From 843269bedd050558d4d53286ac2dfcfb341a1c8a Mon Sep 17 00:00:00 2001 From: Guillermo Perez Date: Mon, 9 Dec 2024 10:48:47 +0100 Subject: [PATCH] Check if sccache is setup by Prep build --- .github/workflows/sanity-checks.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/sanity-checks.yml b/.github/workflows/sanity-checks.yml index d102ab1f31..aadbe0faeb 100644 --- a/.github/workflows/sanity-checks.yml +++ b/.github/workflows/sanity-checks.yml @@ -35,12 +35,15 @@ jobs: # Required for integration tests evm interaction - name: Install Foundry uses: foundry-rs/foundry-toolchain@v1 + - name: Debug GitHub Environment Variables + run: | + echo "Printing all variables in GITHUB_ENV:" + cat $GITHUB_ENV || echo "GITHUB_ENV file not found or empty" - name: Runing cargo ${{ matrix.target }} run: ./ci/run-check.sh env: TARGET: ${{ matrix.target }} - RUSTC_WRAPPER: "sccache" benchmark-check: if: ${{ !github.event.pull_request.draft }} @@ -63,10 +66,13 @@ jobs: GWIP: ${{ secrets.GWIP_SCCACHE }} GSA: ${{ secrets.GSA_SCCACHE }} + - name: Debug GitHub Environment Variables + run: | + echo "Printing all variables in GITHUB_ENV:" + cat $GITHUB_ENV || echo "GITHUB_ENV file not found or empty" - name: Runing cargo ${{ matrix.target }} run: ./ci/run-check.sh env: TARGET: benchmark-check RUNTIME: ${{ matrix.runtime }} - RUSTC_WRAPPER: "sccache"