Skip to content

Commit dce3403

Browse files
authored
Explicitly set ownership of /workspace in CI runs (#167)
* Don't cache dev container CI image This commit disables caching of dev container CI images. It's sort of a hack because our CI started failing with weird permissions issues so we want to see if busting the cache fixes that. Signed-off-by: John Schaeffer <[email protected]> * [hax] Cache it anyway and try running something else Signed-off-by: John Schaeffer <[email protected]> * [hax] Just change the directory perms Signed-off-by: John Schaeffer <[email protected]> --------- Signed-off-by: John Schaeffer <[email protected]>
1 parent 095f367 commit dce3403

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
uses: devcontainers/[email protected]
2222
with:
2323
push: never
24-
runCmd: make ci
24+
runCmd: 'sudo chown -R vscode:vscode /workspace && make ci'
2525

2626
- name: Upload coverage report
2727
uses: codecov/codecov-action@v3

0 commit comments

Comments
 (0)