From d7246b4851ce3d283f85173248997b8a55a2c7fd Mon Sep 17 00:00:00 2001 From: Andrei Dziahel Date: Mon, 22 Jan 2024 11:37:17 +0100 Subject: [PATCH] ci: `nix-store --realise` to `tools:` Since we're building only tools now, we can just specify them directly in the `tools:` parameter of `setup-nix` action. --- .github/workflows/ci.yaml | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 19c0fb293d..dd74a357fa 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -27,13 +27,7 @@ jobs: uses: ./.github/actions/setup-nix with: cache-id: common - - name: Put all tools to store to be cached afterwards - run: | - # shellcheck disable=SC2046 - nix-store -v --realize $( nix-instantiate default.nix \ - -A style -A withTools -A memory -A tests -A release \ - ) - shell: bash + tools: style withTools memory tests release Lint-Style: name: Lint & check code style