Skip to content

Commit

Permalink
change the release CI target to macos-latest (#119)
Browse files Browse the repository at this point in the history
---------

Co-authored-by: David Hoepelman <[email protected]>
  • Loading branch information
psuzn and dhoepelman authored Jul 7, 2024
1 parent b3e4853 commit a47524a
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@ jobs:
name: release
# First run the normal tests
needs: [test]
runs-on: ubuntu-latest
# Release on macOS for the macOS build targets
# macOS can release the other build targets too but not vice-versa
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
Expand Down
9 changes: 8 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,14 @@ permissions:

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
os:
- ubuntu-latest
# Test on macOS for the macOS build targets
- macos-latest
runs-on: ${{matrix.os}}
name: Test on ${{matrix.os}}
steps:
- uses: actions/checkout@v4
name: Checkout
Expand Down

0 comments on commit a47524a

Please sign in to comment.