From 3456a127cf3f63b1424f5bc54a8e1009f87099e0 Mon Sep 17 00:00:00 2001 From: Matt Robinson Date: Thu, 23 Aug 2018 17:17:47 -0400 Subject: [PATCH] More fixes to the staging deploy process (#278) --- Jenkinsfile | 3 --- Makefile | 2 +- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index bcf1e3e45..5d97f7120 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -27,9 +27,6 @@ node('node') { /* This should only deploy to staging if the branch is master */ stage('Deploy') { sh 'make deploy' - for (int i = 1; i < 60; i++) { - sh "./scripts/deploy.staging.sh storage-node-${i} storjlabs/storj-storage-node:${commit_id}" - } echo "Current build result: ${currentBuild.result}" } } diff --git a/Makefile b/Makefile index 40ddc6768..84cbf0d8c 100644 --- a/Makefile +++ b/Makefile @@ -150,7 +150,7 @@ install-deps: .PHONY: deploy deploy: - ./scripts/deploy.staging.sh satellite storjlabs/storj-satellite:${TAG} + ./scripts/deploy.staging.sh satellite storjlabs/satellite:${TAG} for i in $(shell seq 1 60); do \ ./scripts/deploy.staging.sh storage-node-$$i storjlabs/storage-node:${TAG}; \ done