We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9c6141b commit a88a1f7Copy full SHA for a88a1f7
.github/workflows/premerge.yaml
@@ -37,7 +37,12 @@ jobs:
37
runs-on: ${{ matrix.runs-on }}
38
container:
39
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
+ # --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*
46
defaults:
47
run:
48
# The run step defaults to using sh as the shell when running in a
0 commit comments