diff --git a/Jenkinsfile b/Jenkinsfile index ecc7f0751..fe84bfd8a 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -9,14 +9,14 @@ node('node') { echo "Current build result: ${currentBuild.result}" } - stage('Build Images') { - sh 'make images' + stage('Build Binaries') { + sh 'make binaries' echo "Current build result: ${currentBuild.result}" } - stage('Build Binaries') { - sh 'make binaries' + stage('Build Images') { + sh 'make images' echo "Current build result: ${currentBuild.result}" } diff --git a/Makefile b/Makefile index 139b11fe3..8bc60b5d2 100644 --- a/Makefile +++ b/Makefile @@ -115,7 +115,7 @@ test-all-in-one: ## Test docker images locally ##@ Build .PHONY: images -images: satellite-image storagenode-image uplink-image gateway-image ## Build gateway, satellite, storagenode, and uplink Docker images +images: satellite-image storagenode-image uplink-image gateway-image versioncontrol-image ## Build gateway, satellite, storagenode, uplink and versioncontrol Docker images echo Built version: ${TAG} .PHONY: gateway-image