From c7584b29f9999744fe4f37e62c021d3e229dcfba Mon Sep 17 00:00:00 2001 From: Ellie Hermaszewska Date: Fri, 18 Oct 2024 15:49:56 +0800 Subject: Remove sccache (#5206) * Remove sccache * CI docs --- .github/actions/common-setup/action.yml | 10 ---------- 1 file changed, 10 deletions(-) (limited to '.github/actions') diff --git a/.github/actions/common-setup/action.yml b/.github/actions/common-setup/action.yml index 8bdb9c172..89ca4c78b 100644 --- a/.github/actions/common-setup/action.yml +++ b/.github/actions/common-setup/action.yml @@ -126,15 +126,6 @@ runs: path: ${{ github.workspace }}/build/llvm-project-install key: ${{ steps.cache-llvm.outputs.cache-primary-key }} - - # Run this after building llvm, it's pointless to fill the caches with - # infrequent llvm build products - - name: Set up sccache - uses: mozilla-actions/sccache-action@v0.0.6 - # Opportunistically use sccache, it's not available for example on self - # hosted runners or ARM - continue-on-error: true - - name: Set environment variable for CMake and sccache shell: bash run: | @@ -145,7 +136,6 @@ runs: # Set CMake to use sccache if it's available if command -v sccache; then - echo "SCCACHE_GHA_ENABLED=true" >> "$GITHUB_ENV" echo "CMAKE_CXX_COMPILER_LAUNCHER=sccache" >> "$GITHUB_ENV" echo "CMAKE_C_COMPILER_LAUNCHER=sccache" >> "$GITHUB_ENV" fi -- cgit v1.2.3