We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f440fa9 commit ecf269fCopy full SHA for ecf269f
.github/workflows/coverage.yml
@@ -46,6 +46,7 @@ jobs:
46
# Our self-hosted runners require a container
47
# TODO: use a different (nvidia?) container
48
container:
49
+ options: -u root --security-opt seccomp=unconfined --shm-size 16g
50
image: ubuntu:22.04
51
env:
52
NVIDIA_VISIBLE_DEVICES: ${{ env.NVIDIA_VISIBLE_DEVICES }}
@@ -66,6 +67,10 @@ jobs:
66
67
with:
68
fetch-depth: 0
69
70
+ - name: Fix workspace ownership
71
+ run: |
72
+ chown -R $(id -u):$(id -g) "$GITHUB_WORKSPACE"
73
+
74
- name: Install dependencies
75
uses: ./.github/actions/install_unix_deps
76
continue-on-error: false
0 commit comments