Skip to content

Commit

Permalink
Fix git actions on windows tests
Browse files Browse the repository at this point in the history
  • Loading branch information
dulanjalidilmi committed Jan 31, 2024
1 parent f4eeb03 commit 3c032d4
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cluster-tests.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Cluster tests (JDK17 & MySQL)

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

jobs:
ubuntu:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/jdk-17-tests.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Integration tests (Ubuntu, OpenJDK17)

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

jobs:
ubuntu:
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
20 changes: 10 additions & 10 deletions .github/workflows/windows-tests.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Integration tests (Windows, OpenJDK8)

on: [push]
on: [push, pull_request

jobs:
tests-mediators1_2_other_sample:
Expand All @@ -12,10 +12,10 @@ jobs:
run: git config --system core.longpaths true
- uses: actions/checkout@v2
- name: Set up JDK 11
uses: joschi/setup-jdk@v2
uses: actions/setup-java@v2
with:
distribution: 'adopt'
java-version: 11
distribution: 'temurin'
java-version: '11.0.12+7'
- name: Build with Maven
run: mvn -B clean install -P tests-mediators1_2_other_sample --file pom.xml -fae

Expand All @@ -28,10 +28,10 @@ jobs:
run: git config --system core.longpaths true
- uses: actions/checkout@v2
- name: Set up JDK 11
uses: joschi/setup-jdk@v2
uses: actions/setup-java@v2
with:
distribution: 'adopt'
java-version: 11
distribution: 'temurin'
java-version: '11.0.12+7'
- name: Build with Maven
run: mvn -B clean install -P tests-service_patches_servicesamples_dss --file pom.xml -fae

Expand All @@ -44,10 +44,10 @@ jobs:
run: git config --system core.longpaths true
- uses: actions/checkout@v2
- name: Set up JDK 11
uses: joschi/setup-jdk@v2
uses: actions/setup-java@v2
with:
distribution: 'adopt'
java-version: 11
distribution: 'temurin'
java-version: '11.0.12+7'
- name: Build with Maven
run: mvn -B clean install -P tests-transport --file pom.xml -fae

0 comments on commit 3c032d4

Please sign in to comment.