From dce340377f46637dad0b162d802af7303482c9a3 Mon Sep 17 00:00:00 2001 From: John Schaeffer Date: Wed, 30 Aug 2023 17:54:48 -0400 Subject: [PATCH] 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 * [hax] Cache it anyway and try running something else Signed-off-by: John Schaeffer * [hax] Just change the directory perms Signed-off-by: John Schaeffer --------- Signed-off-by: John Schaeffer --- .github/workflows/test.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 1fece1b0..4ea01a73 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -21,7 +21,7 @@ jobs: uses: devcontainers/ci@v0.3 with: push: never - runCmd: make ci + runCmd: 'sudo chown -R vscode:vscode /workspace && make ci' - name: Upload coverage report uses: codecov/codecov-action@v3