From fd8b0fc5fa9e0714ec68c88767109cf5eb08e732 Mon Sep 17 00:00:00 2001 From: Alessandro Ros Date: Sat, 12 Apr 2025 12:56:03 +0200 Subject: [PATCH] rename test (#757) --- .github/workflows/test.yml | 4 ++-- Makefile | 2 +- scripts/test.mk | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 8662b982..4a81eb22 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -41,10 +41,10 @@ jobs: - run: make test-e2e-nodocker - test32: + test_32: runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v4 - - run: make test32 + - run: make test-32 diff --git a/Makefile b/Makefile index fce0360f..112928df 100644 --- a/Makefile +++ b/Makefile @@ -11,7 +11,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 linter" @echo " bench run benchmarks" diff --git a/scripts/test.mk b/scripts/test.mk index 5325f074..ac02e351 100644 --- a/scripts/test.mk +++ b/scripts/test.mk @@ -32,7 +32,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 \ --name temp \