ci.yml: Build meson on darwin

We're building a bit of Darwin meson indirectly through `checks`,
but it'd be annoying to encounter broken un-`check`-ed stuff
during the porting process, so let's just do the right thing now.
This commit is contained in:
Robert Hensing 2024-06-26 11:02:45 +02:00
parent a92f3071bb
commit 9f8e387c3f

View file

@ -195,7 +195,11 @@ jobs:
- run: nix build -L .#hydraJobs.tests.githubFlakes .#hydraJobs.tests.tarballFlakes .#hydraJobs.tests.functional_user
meson_build:
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: DeterminateSystems/nix-installer-action@main