summaryrefslogtreecommitdiffstats
path: root/.github/actions
diff options
context:
space:
mode:
Diffstat (limited to '.github/actions')
-rw-r--r--.github/actions/common-setup/action.yml10
1 files changed, 0 insertions, 10 deletions
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