Skip to content

Commit 74e87c5

Browse files
committed
CI: Avoid hitting Dockerhub rate limits
Running the hello-world container from Dockerhub at the beginning of workflows can cause us to hit rate limits. Switch to a simple docker ps.
1 parent 9f940b7 commit 74e87c5

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/stackhpc-all-in-one.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,9 +86,9 @@ jobs:
8686
with:
8787
submodules: true
8888

89-
- name: Make sure dockerd is running and test Docker.
89+
- name: Make sure dockerd is running and test Docker
9090
run: |
91-
docker run --rm hello-world
91+
docker ps
9292
9393
- name: Output image tag
9494
id: image_tag

.github/workflows/stackhpc-container-image-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ jobs:
125125

126126
- name: Make sure dockerd is running and test Docker
127127
run: |
128-
docker run --rm hello-world
128+
docker ps
129129
130130
- name: Install Kayobe
131131
run: |

0 commit comments

Comments
 (0)