Skip to content

Commit a88a1f7

Browse files
committed
Try to fix sccache
1 parent 9c6141b commit a88a1f7

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/premerge.yaml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,12 @@ jobs:
3737
runs-on: ${{ matrix.runs-on }}
3838
container:
3939
image: ${{ (startsWith(matrix.runs-on, 'depot-ubuntu-24.04-arm') && format('ghcr.io/{0}/arm64v8/ci-ubuntu-24.04',github.repository_owner) ) || null }}
40-
options: --privileged
40+
# --privileged is needed to run the lldb tests that disable aslr.
41+
# --env-host is needed to copy over the environment variables for
42+
# configuring sccache.
43+
options: >-
44+
--privileged
45+
--env SCCACHE*
4146
defaults:
4247
run:
4348
# The run step defaults to using sh as the shell when running in a

0 commit comments

Comments
 (0)