ci: add macos-15-intel to matrix

And fix a stupid typo that made GHA skip running the tests 🤦
This commit is contained in:
Ben Noordhuis 2025-12-10 00:04:28 +01:00
parent 4eefcbeb5c
commit 82fab61570

View File

@ -80,7 +80,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [macos-14, macos-15]
os: [macos-14, macos-15, macos-15-intel]
steps:
- uses: actions/checkout@v6
- name: Envinfo
@ -107,11 +107,11 @@ jobs:
run: |
./build/uv_run_tests_a platform_output
- name: Test
if: ${{ maxtrix.os == 'macos-15' }}
if: ${{ matrix.os == 'macos-15' || matrix.os == 'macos-15-intel' }}
run: |
cd build && sudo UV_RUN_AS_ROOT=1 ctest -V
- name: Test
if: ${{ maxtrix.os != 'macos-15' }}
if: ${{ matrix.os != 'macos-15' && matrix.os != 'macos-15-intel' }}
run: |
cd build && ctest -V
- name: Autotools configure