Config with storage driver
Some checks failed
Build Godot Engine / Build Windows ${{ matrix.name }} (godot-windows-release, Release Template, yes, template_release) (push) Waiting to run
Build Godot Engine / Build Windows ${{ matrix.name }} (godot-windows-debug, Debug Template, no, template_debug) (push) Failing after 1m16s
Build Godot Engine / Build Windows ${{ matrix.name }} (godot-windows-editor, Editor, yes, editor) (push) Has been cancelled

This commit is contained in:
2025-12-02 13:47:13 +01:00
parent e02da0f0dc
commit 74eba5fc29

View File

@ -25,7 +25,7 @@ CTR=$(buildah from --tls-verify=false --storage-driver=vfs "$FULL_IMAGE_URL")
# --- 4. CONFIGURE CONTAINER --- # --- 4. CONFIGURE CONTAINER ---
# FIX: buildah run doesn't have --working-dir. # FIX: buildah run doesn't have --working-dir.
# We use 'buildah config' to set it on the container instance instead. # We use 'buildah config' to set it on the container instance instead.
buildah config --workingdir /src "$CTR" buildah config --storage-driver=vfs --workingdir /src "$CTR"
# --- 5. EXECUTE BUILD --- # --- 5. EXECUTE BUILD ---
echo "Running SCons inside container..." echo "Running SCons inside container..."