Skip to content

Commit

Permalink
Merge pull request #3094 from dulanjalidilmi/master-git-actions-cluster
Browse files Browse the repository at this point in the history
Fix git actions on cluster tests
  • Loading branch information
dulanjalidilmi authored Jan 31, 2024
2 parents 2adf01b + 487c269 commit f4eeb03
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 f4eeb03

Please sign in to comment.