Skip to content

Commit

Permalink
rename buildall make target to every-build
Browse files Browse the repository at this point in the history
  • Loading branch information
lemeurherve committed Jun 18, 2024
1 parent 93f56c4 commit 5624e47
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -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'
}
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 5624e47

Please sign in to comment.