From cf2567f64189f107d3454f880f0faea4abb786e2 Mon Sep 17 00:00:00 2001 From: Alessandro Ros Date: Sat, 12 Apr 2025 13:37:56 +0200 Subject: [PATCH] rename test (#4418) --- .github/workflows/code_test.yml | 2 +- Makefile | 2 +- scripts/test.mk | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/code_test.yml b/.github/workflows/code_test.yml index 91a563d9..d1e27e4e 100644 --- a/.github/workflows/code_test.yml +++ b/.github/workflows/code_test.yml @@ -29,7 +29,7 @@ jobs: with: fetch-depth: 0 - - run: make test32 + - run: make test-32 test_e2e: runs-on: ubuntu-22.04 diff --git a/Makefile b/Makefile index 9f09f71d..13361994 100644 --- a/Makefile +++ b/Makefile @@ -15,7 +15,7 @@ help: @echo " mod-tidy run go mod tidy" @echo " format format source files" @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 " lint run linters" @echo " run run app" diff --git a/scripts/test.mk b/scripts/test.mk index 497c50f5..5604e7c1 100644 --- a/scripts/test.mk +++ b/scripts/test.mk @@ -29,7 +29,7 @@ test: temp \ make test-nodocker -test32: +test-32: echo "$$DOCKERFILE_TEST" | docker build -q . -f - -t temp --build-arg ARCH=i386 docker run --rm \ -v "$(shell pwd):/s" \