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 29, 2024
1 parent 0f94def commit 30b168d
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 19 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
10 changes: 5 additions & 5 deletions .github/workflows/jdk-17-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,18 @@ 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
uses: actions/setup-java@v2
uses: actions/setup-java@v3
with:
distribution: 'adopt'
distribution: 'temurin'
java-version: 17
- name: check mvn version
run: echo "MAVEN_VERSION=$(mvn -v)"
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
Original file line number Diff line number Diff line change
Expand Up @@ -29,18 +29,19 @@
<packaging>bundle</packaging>

<dependencies>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<optional>true</optional>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-api</artifactId>
<optional>true</optional>
<scope>test</scope>
</dependency>
<!-- <dependency>-->
<!-- <groupId>org.apache.logging.log4j</groupId>-->
<!-- <artifactId>log4j-core</artifactId>-->
<!-- <optional>true</optional>-->
<!-- <scope>test</scope>-->
<!-- </dependency>-->
<!-- <dependency>-->
<!-- <groupId>org.apache.logging.log4j</groupId>-->
<!-- <artifactId>log4j-api</artifactId>-->
<!-- <optional>true</optional>-->
<!-- <scope>test</scope>-->
<!-- </dependency>-->

<dependency>
<groupId>javax.jms</groupId>
<artifactId>javax.jms-api</artifactId>
Expand Down

0 comments on commit 30b168d

Please sign in to comment.