Skip to content

Commit

Permalink
Fix git actions on cluster tests
Browse files Browse the repository at this point in the history
Fix #3091
  • Loading branch information
dulanjalidilmi committed Jan 31, 2024
1 parent 2adf01b commit 487c269
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/cluster-tests.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Cluster tests (OpenJDK11 & MySQL)
name: Cluster tests (JDK17 & MySQL)

on: [push, pull_request]

Expand All @@ -13,9 +13,14 @@ jobs:
- name: Set up JDK 11
uses: actions/setup-java@v1
with:
distribution: 'adopt'
java-version: 11
distribution: 'temurin'
java-version: '11.0.12+7'
- name: Build in JDK 11
run: mvn -B clean install -DskipTests --file pom.xml
- name: Set up JDK 17
uses: actions/setup-java@v2
with:
distribution: 'temurin'
java-version: '17.0.6'
- name: Cluster Tests
run: mvn -B clean install --file integration/pom.xml -P cluster-tests

0 comments on commit 487c269

Please sign in to comment.