From 853400cedbcb3d785e7783d173084336fea733ac Mon Sep 17 00:00:00 2001 From: Morgan Funtowicz Date: Tue, 30 Apr 2024 16:38:31 +0200 Subject: [PATCH] Let's try /usr/bin for sccache for Intel --- .github/workflows/tests.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index 3382a8e4..dc28db67 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -119,8 +119,8 @@ jobs: rm -rf /usr/share/dotnet # will release about 20GB if you don't need .NET - name: Install sccache run: | - curl -fsSL https://github.com/mozilla/sccache/releases/download/v$SCCACHE/sccache-v$SCCACHE-x86_64-unknown-linux-musl.tar.gz | tar -xzv --strip-components=1 -C /usr/local/bin sccache-v$SCCACHE-x86_64-unknown-linux-musl/sccache - chmod +x /usr/local/bin/sccache + curl -fsSL https://github.com/mozilla/sccache/releases/download/v$SCCACHE/sccache-v$SCCACHE-x86_64-unknown-linux-musl.tar.gz | tar -xzv --strip-components=1 -C /usr/bin sccache-v$SCCACHE-x86_64-unknown-linux-musl/sccache + chmod +x /usr/bin/sccache - name: configure sccache uses: actions/github-script@v6 with: @@ -157,4 +157,4 @@ jobs: cargo test - name: sccache stats run: | - /usr/local/bin/sccache --show-stats \ No newline at end of file + /usr/bin/sccache --show-stats \ No newline at end of file