diff --git a/.github/workflows/cypress.yml b/.github/workflows/cypress.yml index 50031eb39..330ff8307 100644 --- a/.github/workflows/cypress.yml +++ b/.github/workflows/cypress.yml @@ -67,8 +67,8 @@ jobs: key: cypress-context-${{ github.run_id }} path: /home/runner/work/viewer - - name: Pull server image - run: docker pull ghcr.io/nextcloud/continuous-integration-shallow-server + # - name: Pull server image + # run: docker pull ghcr.io/nextcloud/continuous-integration-shallow-server - name: Run E2E cypress tests uses: cypress-io/github-action@v4 diff --git a/cypress/dockerNode.ts b/cypress/dockerNode.ts index ae0b17bce..f11e71479 100644 --- a/cypress/dockerNode.ts +++ b/cypress/dockerNode.ts @@ -40,7 +40,8 @@ export const startNextcloud = async function (branch: string = 'master'): Promis try { // Pulling images console.log('Pulling images...') - await docker.pull(SERVER_IMAGE) + // https://github.com/apocas/dockerode/issues/208 + await docker.pull(SERVER_IMAGE).catch(function(e){}); // Getting latest image console.log('\nChecking running containers... 🔍')