We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7db2827 commit 78e717bCopy full SHA for 78e717b
.github/workflows/desktop-e2e.yml
@@ -143,6 +143,8 @@ jobs:
143
uses: actions/checkout@v4
144
- name: Build test framework
145
working-directory: test
146
+ env:
147
+ CONTAINER_RUNNER: docker
148
run: ./scripts/container-run.sh ./scripts/build.sh
149
- uses: actions/upload-artifact@v3
150
with:
test/scripts/container-run.sh
@@ -23,7 +23,7 @@ if [[ "$(uname -s)" != "Linux" ]]; then
23
fi
24
25
container_image=$(cat "$REPO_DIR/building/linux-container-image.txt")
26
-podman build -t mullvadvpn-app-tests --build-arg IMAGE="${container_image}" .
+"$CONTAINER_RUNNER" build -t mullvadvpn-app-tests --build-arg IMAGE="${container_image}" .
27
28
exec "$CONTAINER_RUNNER" run --rm -it \
29
-v "${CARGO_REGISTRY_VOLUME_NAME}":/root/.cargo/registry:Z \
0 commit comments