Remove unused env var
This commit is contained in:
parent
6eaa23c963
commit
e02976750d
1
.github/workflows/build.yaml
vendored
1
.github/workflows/build.yaml
vendored
|
@ -9,7 +9,6 @@ jobs:
|
||||||
runs-on: ${{ matrix.systems.runner }}
|
runs-on: ${{ matrix.systems.runner }}
|
||||||
env:
|
env:
|
||||||
CLOSURE_FILE: magic-nix-cache.closure.xz
|
CLOSURE_FILE: magic-nix-cache.closure.xz
|
||||||
CLOSURE_KEY: magic-nix-cache-${{ matrix.systems.runner }}-${{ github.sha }}
|
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
systems:
|
systems:
|
||||||
|
|
5
.github/workflows/check-and-test.yaml
vendored
5
.github/workflows/check-and-test.yaml
vendored
|
@ -7,6 +7,7 @@ on:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
checks:
|
checks:
|
||||||
|
name: Nix and Rust checks
|
||||||
runs-on: ubuntu-22.04
|
runs-on: ubuntu-22.04
|
||||||
permissions:
|
permissions:
|
||||||
contents: read
|
contents: read
|
||||||
|
@ -30,11 +31,13 @@ jobs:
|
||||||
run: nix develop --command cargo clippy
|
run: nix develop --command cargo clippy
|
||||||
|
|
||||||
build:
|
build:
|
||||||
|
name: Build artifacts
|
||||||
needs: checks
|
needs: checks
|
||||||
uses: ./.github/workflows/build.yaml
|
uses: ./.github/workflows/build.yaml
|
||||||
secrets: inherit
|
secrets: inherit
|
||||||
|
|
||||||
test-magic-nix-cache-action:
|
action-integration-test:
|
||||||
|
name: Integration test for magic-nix-cache-action
|
||||||
runs-on: ${{ matrix.systems.runner }}
|
runs-on: ${{ matrix.systems.runner }}
|
||||||
needs: build
|
needs: build
|
||||||
env:
|
env:
|
||||||
|
|
Loading…
Reference in a new issue