From 2d2e3fe5719eab53ec7d8388c0889961dc46e06f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Storsj=C3=B6?= Date: Wed, 31 Jan 2024 10:39:20 +0200 Subject: [PATCH] WIP: github: Test running the macos job on various macos runners --- .github/workflows/build.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f5f20da2..eca2da68 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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 @@ -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