rename test (#4418)

This commit is contained in:
Alessandro Ros 2025-04-12 13:37:56 +02:00 committed by GitHub
parent 517ba4124c
commit cf2567f641
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 3 additions and 3 deletions

View file

@ -29,7 +29,7 @@ jobs:
with: with:
fetch-depth: 0 fetch-depth: 0
- run: make test32 - run: make test-32
test_e2e: test_e2e:
runs-on: ubuntu-22.04 runs-on: ubuntu-22.04

View file

@ -15,7 +15,7 @@ help:
@echo " mod-tidy run go mod tidy" @echo " mod-tidy run go mod tidy"
@echo " format format source files" @echo " format format source files"
@echo " test run tests" @echo " test run tests"
@echo " test32 run tests on a 32-bit system" @echo " test-32 run tests on a 32-bit system"
@echo " test-e2e run end-to-end tests" @echo " test-e2e run end-to-end tests"
@echo " lint run linters" @echo " lint run linters"
@echo " run run app" @echo " run run app"

View file

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