Skip to content

Commit eb9148c

Browse files
committed
Test on java 25, update actions
1 parent b43594b commit eb9148c

1 file changed

Lines changed: 4 additions & 5 deletions

File tree

.github/workflows/ci.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,19 +16,17 @@ jobs:
1616
strategy:
1717
fail-fast: false
1818
matrix:
19-
java: [ '8', '11', '16', '17', '19', '21' ]
19+
java: [ '8', '11', '17', '19', '21', '25' ]
2020
runs-on: [ubuntu-latest, macos-12, windows-2019] # Note macos-12, not latest/14, due to hdf5 install issue
2121
exclude:
2222
- runs-on: macos-latest
2323
java: "8"
24-
- runs-on: macos-latest
25-
java: "16"
2624

2725
name: Test on Java ${{ matrix.Java }} on ${{ matrix.runs-on }}
2826
steps:
29-
- uses: actions/checkout@v4
27+
- uses: actions/checkout@v6
3028
- name: Set up JDK ${{ matrix.Java }}
31-
uses: actions/setup-java@v4
29+
uses: actions/setup-java@v5
3230
with:
3331
java-version: ${{ matrix.Java }}
3432
distribution: 'temurin'
@@ -39,6 +37,7 @@ jobs:
3937
if: ${{ matrix.runs-on != 'windows-2019' }}
4038
run: |
4139
export main_repo_branch=${{env.main_repo_branch}}
40+
if [[ ${main_repo_branch} == "osb_test_master" ]]; then main_repo_branch=master ; fi
4241
if [[ ${main_repo_branch} != "master" && ${main_repo_branch} != "development" && ${main_repo_branch} != "experimental" && ${main_repo_branch} != *"osb"* ]]; then main_repo_branch=development ; fi
4342
echo Using branch $main_repo_branch
4443

0 commit comments

Comments
 (0)