diff --git a/Jenkinsfile b/Jenkinsfile index ac4bfb7c..118113f6 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -58,7 +58,7 @@ pipeline { sh 'make build' sh 'make test' // If the tests are passing for Linux AMD64, then we can build all the CPU architectures - sh 'make buildall' + sh 'make every-build' } else { powershell '& ./build.ps1 test' } diff --git a/Makefile b/Makefile index bb02423a..520a9903 100644 --- a/Makefile +++ b/Makefile @@ -50,7 +50,7 @@ build-%: @$(call check_image,$*) @set -x; $(bake_cli) '$*' --set '*.platform=linux/$(ARCH)' -buildall: check-reqs +every-build: check-reqs @set -x; $(bake_base_cli) linux show: diff --git a/README.md b/README.md index 35ea3758..0eae5cb8 100644 --- a/README.md +++ b/README.md @@ -160,7 +160,7 @@ make test-alpine_jdk17 You can build all images (even those unsupported by your current architecture) by running: ```bash -make buildall +make every-build ``` #### Other `make` targets