comment out aws creds (#1625)

Until we get the Azure AWS creds right, disable those commands

Signed-off-by: Sally MacFarlane <sally.macfarlane@consensys.net>
pull/1628/head
Sally MacFarlane 4 years ago committed by GitHub
parent 7c55b07fda
commit 14880623f1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      .circleci/config.yml
  2. 3
      build.gradle

@ -221,7 +221,8 @@ jobs:
name: Publish Docker
command: |
docker login --username "${DOCKER_USER_RW}" --password "${DOCKER_PASSWORD_RW}"
docker login "${ACR_REPO}" --username "${ACR_USER_RW}" --password "${ACR_PASSWORD_RW}"
// temporarily commented out because AWS credentials are broken
// docker login "${ACR_REPO}" --username "${ACR_USER_RW}" --password "${ACR_PASSWORD_RW}"
./gradlew --no-daemon "-Pbranch=${CIRCLE_BRANCH}" dockerUpload
workflows:

@ -670,7 +670,8 @@ task dockerUpload {
def cmd = "docker push '${image}'"
additionalTags.each { tag ->
cmd += " && docker tag '${image}' '${imageName}:${tag.trim()}' && docker push '${imageName}:${tag.trim()}'"
cmd += " && docker tag '${image}' '${azureImageName}:${tag.trim()}' && docker push '${azureImageName}:${tag.trim()}'"
// temporarily commented out because AWS credentials are broken
// cmd += " && docker tag '${image}' '${azureImageName}:${tag.trim()}' && docker push '${azureImageName}:${tag.trim()}'"
}
executable "sh"
args "-c", cmd

Loading…
Cancel
Save