summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorMassimiliano Culpo <massimiliano.culpo@gmail.com>2024-03-26 20:36:21 +0100
committerGitHub <noreply@github.com>2024-03-26 12:36:21 -0700
commit0841050d2066cfce51435133e78e9842e50a16d6 (patch)
tree5651333b1d5559f29dfaf82972f19edab1ea0798 /.github
parent321ffd732b124fb1eed83ce21d2e744c7c77176f (diff)
downloadspack-0841050d2066cfce51435133e78e9842e50a16d6.tar.gz
spack-0841050d2066cfce51435133e78e9842e50a16d6.tar.bz2
spack-0841050d2066cfce51435133e78e9842e50a16d6.tar.xz
spack-0841050d2066cfce51435133e78e9842e50a16d6.zip
Add macos-14 as a runner (Apple M1) (#42728)
* Add macos-14 as a runner (Apple M1) * Mark a test xfail We need to check later if this test needs modifications on Apple Silicon chips. --------- Co-authored-by: Harmen Stoppels <me@harmenstoppels.nl> Co-authored-by: alalazo <alalazo@users.noreply.github.com>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/unit_tests.yaml3
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/unit_tests.yaml b/.github/workflows/unit_tests.yaml
index 26df165093..fa53ecd5bc 100644
--- a/.github/workflows/unit_tests.yaml
+++ b/.github/workflows/unit_tests.yaml
@@ -186,9 +186,10 @@ jobs:
flags: unittests,linux,clingo
# Run unit tests on MacOS
macos:
- runs-on: macos-latest
+ runs-on: ${{ matrix.os }}
strategy:
matrix:
+ os: [macos-latest, macos-14]
python-version: ["3.11"]
steps:
- uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # @v2