Skip to content

Commit eb942dd

Browse files
committed
Change workflow
1 parent 57c5cfc commit eb942dd

File tree

1 file changed

+9
-7
lines changed

1 file changed

+9
-7
lines changed

.github/workflows/integration-tests.yaml

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,6 @@ jobs:
1111
clickhouse: [ "23.7", "24.3", "latest", "cloud" ]
1212
flink: [ "1.17.2", "1.18.1", "1.19.3", "1.20.2", "latest"]
1313
steps:
14-
- name: Set up JDK 21
15-
if: env.SKIP_STEP != 'true'
16-
uses: actions/setup-java@v3
17-
with:
18-
java-version: '21'
19-
distribution: 'adopt'
20-
architecture: x64
2114
- name: Check for Cloud Credentials
2215
id: check-cloud-credentials
2316
run: |
@@ -27,6 +20,15 @@ jobs:
2720
echo "SKIP_STEP=false" >> $GITHUB_ENV
2821
fi
2922
shell: bash
23+
- uses: actions/checkout@v3
24+
if: env.SKIP_STEP != 'true'
25+
- name: Set up JDK 11
26+
if: env.SKIP_STEP != 'true'
27+
uses: actions/setup-java@v3
28+
with:
29+
java-version: '11'
30+
distribution: 'adopt'
31+
architecture: x64
3032
- name: Publish locally base
3133
if: env.SKIP_STEP != 'true'
3234
uses: gradle/gradle-build-action@v2

0 commit comments

Comments
 (0)