Skip to content

Commit

Permalink
fix(ci): prefer ecr to dockerhub (aws#628)
Browse files Browse the repository at this point in the history
Pulls have been occasionally failing distcheck jobs since 83f563c moved
these jobs from codebuild "self-hosted" runners to just run atop the gha
standard runners with docker. Try using ECR instead in the hopes that we
are not rate limited there.

Signed-off-by: Nicholas Sielicki <[email protected]>
(cherry picked from commit 0ff714b)
  • Loading branch information
aws-nslick authored and a-szegel committed Nov 6, 2024
1 parent 0300a2a commit 5913147
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/distcheck.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,29 +22,31 @@ jobs:
sdk:
- cuda
container:
- amazonlinux:2023
- amazonlinux:2
- public.ecr.aws/amazonlinux/amazonlinux:2023
- public.ecr.aws/amazonlinux/amazonlinux:2
efainstaller:
- latest
- 1.32.0
- 1.31.0
- 1.30.0
include:
- container: amazonlinux:2023
- container: public.ecr.aws/amazonlinux/amazonlinux:2023
displayname: al2023
efainstallerdir: ALINUX2023
nvidiadistro: amzn2023
configmanager: dnf config-manager
cudapackages: cuda-cudart-devel-12-5 cuda-driver-devel-12-5

- container: amazonlinux:2
- container: public.ecr.aws/amazonlinux/amazonlinux:2
displayname: al2
efainstallerdir: ALINUX2
nvidiadistro: rhel7
configmanager: yum-config-manager
cudapackages: cuda-cudart-devel-12-4 cuda-driver-devel-12-4

runs-on: ubuntu-latest
container: ${{ matrix.container }}
name: ${{matrix.container}}/${{ matrix.sdk }}/efa@${{ matrix.efainstaller }}/makeinstall
name: ${{ matrix.displayname }}/${{ matrix.sdk }}/efa@${{ matrix.efainstaller }}/makeinstall
steps:
- run: |
yum -y update && yum -y install git tar util-linux findutils yum-utils
Expand Down

0 comments on commit 5913147

Please sign in to comment.