Skip to content

Commit

Permalink
Circleci claims no throttling. Let's see without login.
Browse files Browse the repository at this point in the history
  • Loading branch information
ludamad committed Sep 7, 2023
1 parent d6fe5fd commit fde01c7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build-system/scripts/build
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ if [ -d $ROOT_PATH/$PROJECT_DIR/terraform ]; then
fi

# Pull latest parents that are not ours. We also do not want to pull images suffixed by _, this is how we scope intermediate build images.
echo "$DOCKERHUB_PASSWORD" | docker login -u aztecprotocolci --password-stdin
#echo "$DOCKERHUB_PASSWORD" | docker login -u aztecprotocolci --password-stdin
PARENTS=$(cat $DOCKERFILE | sed -n -e 's/^FROM \([^[:space:]]\+\).*/\1/p' | sed '/_$/d' | grep -v $ECR_DEPLOY_URL | sort | uniq)
for PARENT in $PARENTS; do
fetch_image $PARENT
Expand Down
2 changes: 1 addition & 1 deletion build-system/scripts/deploy_dockerhub
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ retry_10 ensure_repo $REPOSITORY $ECR_DEPLOY_REGION
docker pull $IMAGE_COMMIT_URI

# Login to dockerhub.
echo "$DOCKERHUB_PASSWORD" | docker login -u aztecprotocolci --password-stdin
#echo "$DOCKERHUB_PASSWORD" | docker login -u aztecprotocolci --password-stdin

# Tag with commit tag
docker tag $IMAGE_COMMIT_URI $IMAGE_DEPLOY_URI
Expand Down

0 comments on commit fde01c7

Please sign in to comment.