Skip to content

Commit df49172

Browse files
authored
fix: parallelized IT (#5389)
1 parent a79ab71 commit df49172

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

.github/workflows/pr-mit-integration-tests.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -235,6 +235,15 @@ jobs:
235235
id: login-ecr
236236
uses: aws-actions/amazon-ecr-login@v2
237237

238+
# needed for pulling Vespa, Redis, Postgres, and Minio images
239+
# otherwise, we hit the "Unauthenticated users" limit
240+
# https://docs.docker.com/docker-hub/usage/
241+
- name: Login to Docker Hub
242+
uses: docker/login-action@v3
243+
with:
244+
username: ${{ secrets.DOCKER_USERNAME }}
245+
password: ${{ secrets.DOCKER_TOKEN }}
246+
238247
- name: Pull Docker images
239248
run: |
240249
# Pull all images from registry in parallel

0 commit comments

Comments
 (0)