summaryrefslogtreecommitdiff
path: root/.github/actions
diff options
context:
space:
mode:
Diffstat (limited to '.github/actions')
-rw-r--r--.github/actions/common-setup/action.yml3
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/actions/common-setup/action.yml b/.github/actions/common-setup/action.yml
index 712a74df5..736d0bafb 100644
--- a/.github/actions/common-setup/action.yml
+++ b/.github/actions/common-setup/action.yml
@@ -95,7 +95,7 @@ runs:
# hosted runners or ARM
continue-on-error: true
- - name: Set environment variable for CMake
+ - name: Set environment variable for CMake and sccache
shell: bash
run: |
if [ "${{inputs.build-llvm}}" == "true" ]; then
@@ -108,6 +108,7 @@ runs:
echo "CMAKE_CXX_COMPILER_LAUNCHER=sccache" >> "$GITHUB_ENV"
echo "CMAKE_C_COMPILER_LAUNCHER=sccache" >> "$GITHUB_ENV"
fi
+ echo SCCACHE_IGNORE_SERVER_IO_ERROR=1 >> "$GITHUB_ENV"
# Install swiftshader
- uses: robinraju/release-downloader@v1.8