Skip to content

Commit ccefb74

Browse files
committed
Change GHA for solid-test-suites to load docker images form cache.
1 parent 2e9f8ff commit ccefb74

1 file changed

Lines changed: 10 additions & 4 deletions

File tree

.github/workflows/solid-tests-suites.yml

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -186,6 +186,12 @@ jobs:
186186
timeout-minutes: 30
187187
needs:
188188
- build-docker-nextcloud
189+
- docker-images
190+
- pull-docker-cookie
191+
- pull-docker-pubsub
192+
- pull-docker-solid-crud-tests
193+
- pull-docker-web-access-control-tests
194+
- pull-docker-webid-provider-tests
189195

190196
runs-on: ubuntu-latest
191197

@@ -227,12 +233,12 @@ jobs:
227233
password: ${{ secrets.GITHUB_TOKEN }}
228234

229235
# FIXME: The `docker pull` should be moved to a previous step and cached
230-
- name: Pull docker Images
236+
- name: Load docker Images
231237
run: |
232238
docker image load --input ./cache/solid-nextcloud/${{ github.sha }}-${{ matrix.nextcloud_version }}.tar
233-
docker pull michielbdejong/nextcloud-cookie:${{ env.COOKIE_TAG }}
234-
docker pull ${{ matrix.test }}
235-
docker pull ghcr.io/pdsinterop/php-solid-pubsub-server:${{ env.PUBSUB_TAG }}
239+
docker image load --input ./cache/${{ needs.docker-images.outputs.COOKIE_IMAGE }}.tar
240+
docker image load --input ./cache/${{ matrix.test }}.tar
241+
docker image load --input ./cache/${{ needs.docker-images.outputs.PUBSUB_TAG }}.tar
236242
237243
- name: Start Docker Containers
238244
run: |

0 commit comments

Comments
 (0)