Skip to content

Commit 60d13b4

Browse files
committed
Fix sccache
1 parent 3a4b6af commit 60d13b4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/premerge.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,15 +75,15 @@ jobs:
7575
export LIT_XFAIL="functionalities/gdb_remote_client/TestqOffsets.py"
7676
export LIT_FILTER_OUT=TestqOffsets.py
7777
fi
78-
env
7978
80-
if ! [[ "${{ matrix.runs-on }}" = "llvm-premerge-linux-runners" ]]; then
79+
if [[ "${{ matrix.runs-on }}" = "llvm-premerge-linux-runners" ]]; then
8180
# This environment variable is passes into the container through the
8281
# runner pod definition. This differs between our two clusters which
8382
# why we do not hardcode it.
8483
export SCCACHE_GCS_BUCKET=$CACHE_GCS_BUCKET
8584
export SCCACHE_GCS_RW_MODE=READ_WRITE
8685
fi
86+
env
8787
8888
# Set the idle timeout to zero to ensure sccache runs for the
8989
# entire duration of the job. Otherwise it might stop if we run

0 commit comments

Comments
 (0)