Skip to content

Commit

Permalink
Update workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
m0rkeulv committed Dec 1, 2024
1 parent 264d2c8 commit 16e6960
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,18 +17,18 @@ jobs:
strategy:
fail-fast: false # set this to true if you want to cancel all builds if one fails.
matrix:
IDEA_VERSION: [2024.1]
IDEA_VERSION: [2024.3]
OS: [macos-13, ubuntu-latest, windows-latest]

runs-on: ${{ matrix.OS }}
timeout-minutes: 25
steps:
- uses: actions/checkout@v3
- name: Set up JDK 17
- name: Set up JDK 21
uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: 17
java-version: 21

- name: Set up Haxe
uses: krdlab/setup-haxe@v1
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/prerelease.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,22 +40,22 @@ jobs:
strategy:
fail-fast: true # cancel all builds if one fails.
matrix:
IDEA_VERSION: [2024.1]
IDEA_VERSION: [2024.3]
needs: prepare
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 17
- name: Set up JDK 21
uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: 17
java-version: 21
architecture: x64

- name: Set up Haxe
uses: krdlab/setup-haxe@v1
with:
haxe-version: 4.3.0
haxe-version: 4.3.4

- name: Test haxe
run: haxe -version
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,22 +49,22 @@ jobs:
strategy:
fail-fast: true # cancel all builds if one fails.
matrix:
IDEA_VERSION: [ 2024.1 ]
IDEA_VERSION: [ 2024.3 ]
needs: prepare
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 17
- name: Set up JDK 21
uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: 17
java-version: 21
architecture: x64

- name: Set up Haxe
uses: krdlab/setup-haxe@v1
with:
haxe-version: 4.3.0
haxe-version: 4.3.4

- name: Test haxe
run: haxe -version
Expand Down

0 comments on commit 16e6960

Please sign in to comment.