Update flake.lock #1016
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: "Test" | |
| on: | |
| pull_request: | |
| push: | |
| branches-ignore: | |
| # Don't run twice on automation updates, rely on pull_request hook | |
| - 'automation/**' | |
| - 'dependabot/**' | |
| jobs: | |
| tests-pass: | |
| name: all systems go | |
| runs-on: ubuntu-latest | |
| if: ${{ always() && contains(needs.*.result, 'failure') }} | |
| steps: | |
| - run: exit 1 | |
| needs: | |
| - tests | |
| tests: | |
| strategy: | |
| # Allow other jobs to finish building and cache properly before bailing | |
| fail-fast: false | |
| matrix: | |
| include: | |
| #- os: macos-12 | |
| - os: ubuntu-latest | |
| system: "x86_64-linux" | |
| - os: ubuntu-latest | |
| qemuPlatforms: "arm64" | |
| system: "aarch64-linux" | |
| extraPlatforms: "aarch64-linux" | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: cachix/install-nix-action@v31 | |
| with: | |
| extra_nix_config: | | |
| extra-platforms = ${{ matrix.extraPlatforms }} | |
| - uses: cachix/cachix-action@v16 | |
| with: | |
| name: ipetkov | |
| signingKey: '${{ secrets.CACHIX_SIGNING_KEY }}' | |
| - name: install QEMU/binfmt | |
| if: ${{ matrix.qemuPlatforms != '' }} | |
| uses: docker/setup-qemu-action@v3 | |
| with: | |
| image: tonistiigi/binfmt:latest | |
| platforms: ${{ matrix.qemuPlatforms }} | |
| - name: build all definitions | |
| run: nix develop .#ci --command nix-fast-build --skip-cached --no-nom --eval-workers 1 --systems ${{ matrix.system }} |