More fixes to the staging deploy process (#278)

This commit is contained in:
Matt Robinson 2018-08-23 17:17:47 -04:00 committed by GitHub
parent 631331236e
commit 3456a127cf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 4 deletions

3
Jenkinsfile vendored
View File

@ -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}"
}
}

View File

@ -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