Skip to content

Commit 5d6a89b

Browse files
committed
Don't run as root
1 parent e9558c9 commit 5d6a89b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ jobs:
247247
name: Unreal Engine Tests
248248
# This can't go on e.g. ubuntu-latest because that runner runs out of disk space. ChatGPT suggested that the general solution tends to be to use
249249
# a custom runner.
250-
runs-on: spacetimedb-runner
250+
runs-on: ubuntu-latest
251251
container:
252252
image: ghcr.io/epicgames/unreal-engine:dev-5.6
253253
credentials:
@@ -259,7 +259,7 @@ jobs:
259259
password: ${{ secrets.GHCR_TOKEN }}
260260
# Run as root because otherwise we get permission denied for various directories inside the container. I tried doing dances to allow it to run
261261
# without this (reassigning env vars and stuff), but was unable to get it to work and it felt like an uphill battle.
262-
options: --user 0:0
262+
# options: --user 0:0
263263
steps:
264264
# Uncomment this before merging so that it will run properly if run manually through the GH actions flow. It was playing weird with rolled back
265265
# commits though.

0 commit comments

Comments
 (0)