Skip to content

Commit

Permalink
workflows: update to macOS 14
Browse files Browse the repository at this point in the history
Add ARM64 test coverage.

Signed-off-by: Benjamin Gilbert <[email protected]>
  • Loading branch information
bgilbert committed Apr 4, 2024
1 parent aabc7fc commit f77e937
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/java.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,21 +18,21 @@ jobs:
dist-base: ${{ steps.dist.outputs.dist-base }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
os: [ubuntu-latest, macos-14]
include:
- os: ubuntu-latest
dist: dist
steps:
- name: Check out repo
uses: actions/checkout@v4
- name: Install dependencies (Linux)
if: ${{ matrix.os == 'ubuntu-latest' }}
if: matrix.os == 'ubuntu-latest'
run: |
sudo apt-get install libopenslide0-dev ninja-build
# Ubuntu 22.04 packages Meson 0.61
pip install --user meson
- name: Install dependencies (macOS)
if: ${{ matrix.os == 'macos-latest' }}
if: matrix.os == 'macos-14'
run: brew install meson openslide
- name: Build
run: |
Expand Down

0 comments on commit f77e937

Please sign in to comment.