Skip to content

Commit

Permalink
update-final-comment
Browse files Browse the repository at this point in the history
  • Loading branch information
JNSimba committed Dec 27, 2023
1 parent c85f15b commit b97165d
Show file tree
Hide file tree
Showing 5 changed files with 112 additions and 114 deletions.
70 changes: 2 additions & 68 deletions .github/workflows/build-extension.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ on:
push:

jobs:
build-extension-1.15:
name: "Build Extensions Flink 1.15"
build-extension:
name: "Build Extensions"
runs-on: ubuntu-latest
defaults:
run:
Expand All @@ -43,69 +43,3 @@ jobs:
cd flink-doris-connector && mvn clean package \
-Dflink.version=1.15.0 \
-Dflink.minor.version=1.15
build-extension-1.16:
name: "Build Extensions Flink 1.16"
runs-on: ubuntu-latest
defaults:
run:
shell: bash
steps:
- name: Checkout
uses: actions/checkout@master

- name: Setup java
uses: actions/setup-java@v2
with:
distribution: adopt
java-version: '8'

- name: Build flink connector 1.16
run: |
cd flink-doris-connector && mvn clean package \
-Dflink.version=1.16.0 \
-Dflink.minor.version=1.16
build-extension-1.17:
name: "Build Extensions Flink 1.17"
runs-on: ubuntu-latest
defaults:
run:
shell: bash
steps:
- name: Checkout
uses: actions/checkout@master

- name: Setup java
uses: actions/setup-java@v2
with:
distribution: adopt
java-version: '8'

- name: Build flink connector 1.17
run: |
cd flink-doris-connector && mvn clean package \
-Dflink.version=1.17.0 \
-Dflink.minor.version=1.17
build-extension-1.18:
name: "Build Extensions Flink 1.18"
runs-on: ubuntu-latest
defaults:
run:
shell: bash
steps:
- name: Checkout
uses: actions/checkout@master

- name: Setup java
uses: actions/setup-java@v2
with:
distribution: adopt
java-version: '8'

- name: Build flink connector 1.18
run: |
cd flink-doris-connector && mvn clean package \
-Dflink.version=1.18.0 \
-Dflink.minor.version=1.18
30 changes: 7 additions & 23 deletions .github/workflows/run-e2ecase-12.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,18 @@
# under the License.
#
---
name: Run E2ECases
name: Run E2ECases 1.2
on:
pull_request:
push:

concurrency:
group: example
cancel-in-progress: true

jobs:
run-e2ecase-12:
name: "Run E2ECases 1.2"
build-extension:
name: "Run E2ECases On Doris 1.2"
runs-on: ubuntu-latest
defaults:
run:
Expand All @@ -42,23 +46,3 @@ jobs:
run: |
cd flink-doris-connector && mvn test -Dtest="*E2ECase" -Dimage="adamlee489/doris:1.2.7.1_x86"
run-e2ecase-20:
need: run-e2ecase-12
name: "Run E2ECases 2.0"
runs-on: ubuntu-latest
defaults:
run:
shell: bash
steps:
- name: Checkout
uses: actions/checkout@master

- name: Setup java
uses: actions/setup-java@v2
with:
distribution: adopt
java-version: '8'

- name: Run E2ECases
run: |
cd flink-doris-connector && mvn test -Dtest="*E2ECase" -Dimage="adamlee489/doris:2.0.3"
48 changes: 48 additions & 0 deletions .github/workflows/run-e2ecase-20.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
#
---
name: Run E2ECases 2.0
on:
pull_request:
push:

concurrency:
group: example
cancel-in-progress: true

jobs:
build-extension:
name: "Run E2ECases On Doris 2.0"
runs-on: ubuntu-latest
defaults:
run:
shell: bash
steps:
- name: Checkout
uses: actions/checkout@master

- name: Setup java
uses: actions/setup-java@v2
with:
distribution: adopt
java-version: '8'

- name: Run E2ECases
run: |
cd flink-doris-connector && mvn test -Dtest="*E2ECase" -Dimage="adamlee489/doris:2.0.3"
30 changes: 7 additions & 23 deletions .github/workflows/run-itcase-12.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,18 @@
# under the License.
#
---
name: Run ITCases
name: Run ITCases 1.2
on:
pull_request:
push:

concurrency:
group: example
cancel-in-progress: true

jobs:
run-itcases-12:
name: "Run ITCases 1.2"
build-extension:
name: "Run ITCases On Doris 1.2"
runs-on: ubuntu-latest
defaults:
run:
Expand All @@ -42,23 +46,3 @@ jobs:
run: |
cd flink-doris-connector && mvn test -Dtest="*ITCase" -Dimage="adamlee489/doris:1.2.7.1_x86"
run-itcases-20:
needs: run-itcases-12
name: "Run ITCases 2.0"
runs-on: ubuntu-latest
defaults:
run:
shell: bash
steps:
- name: Checkout
uses: actions/checkout@master

- name: Setup java
uses: actions/setup-java@v2
with:
distribution: adopt
java-version: '8'

- name: Run ITCases
run: |
cd flink-doris-connector && mvn test -Dtest="*ITCase" -Dimage="adamlee489/doris:2.0.3"
48 changes: 48 additions & 0 deletions .github/workflows/run-itcase-20.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
#
---
name: Run ITCases 2.0
on:
pull_request:
push:

concurrency:
group: example
cancel-in-progress: true

jobs:
build-extension:
name: "Run ITCases On Doris 2.0"
runs-on: ubuntu-latest
defaults:
run:
shell: bash
steps:
- name: Checkout
uses: actions/checkout@master

- name: Setup java
uses: actions/setup-java@v2
with:
distribution: adopt
java-version: '8'

- name: Run ITCases
run: |
cd flink-doris-connector && mvn test -Dtest="*ITCase" -Dimage="adamlee489/doris:2.0.3"

0 comments on commit b97165d

Please sign in to comment.