Skip to content

Commit

Permalink
Merge pull request #4515 from RCoeurjoly/nix_on_macos
Browse files Browse the repository at this point in the history
Run nix build also on macos. Build with more logs
  • Loading branch information
widlarizer authored Aug 19, 2024
2 parents e0d3bbf + 7e34142 commit 9de5348
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/extra-builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,12 +86,16 @@ jobs:
name: "Build nix flake"
needs: pre_job
if: needs.pre_job.outputs.should_skip != 'true'
runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
fail-fast: false
steps:
- uses: actions/checkout@v4
with:
submodules: true
- uses: cachix/install-nix-action@v26
with:
install_url: https://releases.nixos.org/nix/nix-2.18.1/install
- run: nix build .?submodules=1
- run: nix build .?submodules=1 -L

0 comments on commit 9de5348

Please sign in to comment.