Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
JNSimba committed Dec 26, 2023
1 parent e30ec16 commit 4e171cb
Show file tree
Hide file tree
Showing 4 changed files with 92 additions and 52 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,13 @@
# under the License.
#
---
name: Run E2ECases
name: Run E2ECases 1.2
on:
pull_request:
push:

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

jobs:
run-e2e-case-12:
build-extension:
name: "Run E2ECases On Doris 1.2"
runs-on: ubuntu-latest
defaults:
Expand All @@ -46,23 +42,3 @@ jobs:
run: |
cd flink-doris-connector && mvn test -Dtest="*E2ECase" -Dimage="adamlee489/doris:1.2.7.1_x86"
run-e2e-case-20:
needs: run-e2e-case-12
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"
44 changes: 44 additions & 0 deletions .github/workflows/run-e2ecase-20.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
# 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:

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_x64"
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,13 @@
# 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:
build-extension:
name: "Run ITCases On Doris 1.2"
runs-on: ubuntu-latest
defaults:
Expand All @@ -46,23 +42,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 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"
44 changes: 44 additions & 0 deletions .github/workflows/run-itcase-20.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
# 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:

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_x64"

0 comments on commit 4e171cb

Please sign in to comment.