Skip to content

Commit

Permalink
Add macOS matrix to ci.yml
Browse files Browse the repository at this point in the history
This trivial change introduces matrix for multiple macOS systems.

For difference between `macos-10.15` and `macos-11`, see
actions/runner-images#4060
  • Loading branch information
AralRocais authored and t-mat committed Jan 8, 2023
1 parent 396b47a commit bff1251
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -322,11 +322,19 @@ jobs:
run: |
LDFLAGS="-static" CC=$XCC RUN_ENV=$XEMU make clean check
# macOS
macos-latest-general:
name: macOS general test
runs-on: macos-latest
# macOS, { 10.15, 11 }

macos-general:
name: ${{ matrix.system.os }}
runs-on: ${{ matrix.system.os }}
strategy:
fail-fast: false # 'false' means Don't stop matrix workflows even if some matrix failed.
matrix:
system: [
{ os: macos-11 },
{ os: macos-10.15 },
]
steps:
- uses: actions/checkout@v2

Expand Down

0 comments on commit bff1251

Please sign in to comment.