fix
This commit is contained in:
parent
5d80e059aa
commit
b141ccc81b
1 changed files with 3 additions and 3 deletions
6
.github/workflows/build.yaml
vendored
6
.github/workflows/build.yaml
vendored
|
|
@ -42,14 +42,14 @@ jobs:
|
||||||
|
|
||||||
echo dynamic_list="$(cat .output)" >> "$GITHUB_OUTPUT"
|
echo dynamic_list="$(cat .output)" >> "$GITHUB_OUTPUT"
|
||||||
outputs:
|
outputs:
|
||||||
matrix: ${{ steps.generate-matrix.outputs.dynamic_list }}
|
check: ${{ steps.generate-matrix.outputs.dynamic_list }}
|
||||||
|
|
||||||
tests:
|
tests:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
needs: [ "build-matrix" ]
|
needs: [ "build-matrix" ]
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
test: ${{ fromJson(needs.build-matrix.outputs.matrix) }}
|
check: ${{ fromJson(needs.build-matrix.outputs.check) }}
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|
@ -65,7 +65,7 @@ jobs:
|
||||||
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
|
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
|
||||||
- name: Build
|
- name: Build
|
||||||
run: |
|
run: |
|
||||||
nix build .#checks.x86_64-linux.${{ matrix.job }}
|
nix build .#checks.x86_64-linux.${{ matrix.check }}
|
||||||
|
|
||||||
# nix run github:Mic92/nix-fast-build -- \
|
# nix run github:Mic92/nix-fast-build -- \
|
||||||
# --skip-cached --no-nom \
|
# --skip-cached --no-nom \
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue