Skip to content

Commit

Permalink
Mac support...
Browse files Browse the repository at this point in the history
  • Loading branch information
pgleeson committed May 2, 2024
1 parent dba6812 commit 72d9050
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,12 @@ jobs:
fail-fast: false
matrix:
java: [ '8', '11', '16', '17', '19', '21' ]
runs-on: [ubuntu-latest, windows-latest, macos-latest ]
runs-on: [ubuntu-latest, windows-latest, macos-latest, macos-12 ]
exclude:
- runs-on: macos-latest
java: "8"
- runs-on: macos-latest
java: "16"

name: Test on Java ${{ matrix.Java }} on ${{ matrix.runs-on }}
steps:
Expand All @@ -26,6 +31,12 @@ jobs:
java-version: ${{ matrix.Java }}
distribution: 'adopt'


- name: Install SVN on macos-latest
if: ${{ matrix.runs-on == 'macos-latest' }}
run: |
brew install subversion
- name: Set up env
run: |
mkdir temp
Expand Down

0 comments on commit 72d9050

Please sign in to comment.