Skip to content

Commit

Permalink
rename ci-init make target to docker-init
Browse files Browse the repository at this point in the history
  • Loading branch information
lemeurherve committed Jun 18, 2024
1 parent 99b76a7 commit 93f56c4
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 @@ -44,7 +44,7 @@ pipeline {
environment name: 'IMAGE_TYPE', value: 'linux'
}
steps {
sh 'make ci-init'
sh 'make docker-init'
}
}
stage('Build and Test') {
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ check-reqs:
@$(call check_cli,jq)

## This function is specific to Jenkins infrastructure and isn't required in other contexts
ci-init: check-reqs
docker-init: check-reqs
@set -x; docker buildx create --use
docker run --rm --privileged multiarch/qemu-user-static --reset -p yes

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ make: 'bats' is up to date.
`publish` allows the publication of all images targeted by 'linux' to a registry.
`ci-init` is dedicated to Jenkins infrastructure for initializing docker and isn't required in other contexts.
`docker-init` is dedicated to Jenkins infrastructure for initializing docker and isn't required in other contexts.
### Building and testing on Windows
Expand Down

0 comments on commit 93f56c4

Please sign in to comment.