Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ibizaman committed Oct 24, 2024
1 parent 5d80e05 commit b141ccc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,14 +42,14 @@ jobs:
echo dynamic_list="$(cat .output)" >> "$GITHUB_OUTPUT"
outputs:
matrix: ${{ steps.generate-matrix.outputs.dynamic_list }}
check: ${{ steps.generate-matrix.outputs.dynamic_list }}

tests:
runs-on: ubuntu-latest
needs: [ "build-matrix" ]
strategy:
matrix:
test: ${{ fromJson(needs.build-matrix.outputs.matrix) }}
check: ${{ fromJson(needs.build-matrix.outputs.check) }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
Expand All @@ -65,7 +65,7 @@ jobs:
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
- name: Build
run: |
nix build .#checks.x86_64-linux.${{ matrix.job }}
nix build .#checks.x86_64-linux.${{ matrix.check }}
# nix run github:Mic92/nix-fast-build -- \
# --skip-cached --no-nom \
Expand Down

0 comments on commit b141ccc

Please sign in to comment.