improve script compatibility (#4132)

This commit is contained in:
Alessandro Ros 2025-01-10 17:36:03 +01:00 committed by GitHub
parent 0af7bcc6de
commit c6a54d1229
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 7 additions and 7 deletions

View file

@ -25,13 +25,13 @@ export DOCKERFILE_TEST
test:
echo "$$DOCKERFILE_TEST" | docker build -q . -f - -t temp --build-arg ARCH=amd64
docker run --rm \
-v "$(PWD):/s" \
-v "$(shell pwd):/s" \
temp \
make test-nodocker
test32:
echo "$$DOCKERFILE_TEST" | docker build -q . -f - -t temp --build-arg ARCH=i386
docker run --rm \
-v "$(PWD):/s" \
-v "$(shell pwd):/s" \
temp \
make test-nodocker