Skip to content

Commit

Permalink
Update git actions
Browse files Browse the repository at this point in the history
Fix #3091
  • Loading branch information
dulanjalidilmi committed Jan 30, 2024
1 parent 0f94def commit 6fa34a8
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/cluster-tests.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: Cluster tests (OpenJDK11 & MySQL)

on: [push, pull_request]
on: [push]
#on: [push, pull_request]

jobs:
ubuntu:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/jdk-17-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ jobs:
- name: Set up JDK 11
uses: actions/setup-java@v2
with:
distribution: 'adopt'
java-version: 11
distribution: 'temurin'
java-version: '11.0.12+7'
- name: check mvn version
run: echo "MAVEN_VERSION=$(mvn -v)"
- name: check java version
run: echo "JAVA_VERSION=$(java -version)"
run: echo "JAVA_VERSION=$(java --version)"
- name: Build in jdk11
run: mvn -B clean install -DskipTests --file pom.xml
- name: Set up JDK 17
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/smoke-tests.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Smoke Tests (OpenJDK8)

on: [push, pull_request]
on: [push]

jobs:
others:
Expand Down

0 comments on commit 6fa34a8

Please sign in to comment.