Skip to content

Commit

Permalink
WIP: github: Test running the macos job on various macos runners
Browse files Browse the repository at this point in the history
  • Loading branch information
mstorsjo committed Apr 21, 2024
1 parent 2a3c494 commit 2d2e3fe
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,13 @@ jobs:
macos:
if: (github.event_name != 'schedule') || (github.repository == 'mstorsjo/llvm-mingw')
needs: [prepare]
runs-on: macos-latest
strategy:
matrix:
runner:
- macos-latest
- macos-13
- macos-14
runs-on: ${{matrix.runner}}
steps:
- uses: actions/checkout@v4
- name: Build
Expand All @@ -213,7 +219,7 @@ jobs:
gtar -Jcf ../$NAME.tar.xz --format=ustar --numeric-owner --owner=0 --group=0 --sort=name --mtime="$BUILD_DATE" $NAME
- uses: actions/upload-artifact@v4
with:
name: macos-ucrt-toolchain
name: ${{matrix.runner}}-ucrt-toolchain
path: |
llvm-mingw-*.tar.xz
retention-days: 7
Expand Down

0 comments on commit 2d2e3fe

Please sign in to comment.