Skip to content

Commit

Permalink
push.yml: lighten the load on GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed Jun 29, 2024
1 parent ed921bc commit 60366f9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
distribution: 'zulu'
java-version: 11
- uses: actions/checkout@v4
- run: ./gradlew run build --console=plain --no-daemon
- run: ./gradlew -Pplatform=MacOSX64 run build --console=plain --no-daemon

Java17-MacOS:
if: contains(toJson(github.event.commits), '[ci skip] ') == false
Expand All @@ -37,7 +37,7 @@ jobs:
distribution: 'zulu'
java-version: 17
- uses: actions/checkout@v4
- run: ./gradlew build --console=plain --no-daemon
- run: ./gradlew -Pplatform=MacOSX_ARM64 build --console=plain --no-daemon

Java21-Windows:
if: contains(toJson(github.event.commits), '[ci skip] ') == false
Expand Down

0 comments on commit 60366f9

Please sign in to comment.