From e3d84ef832d52934a487a3ad87ee36a8dd843ed0 Mon Sep 17 00:00:00 2001 From: Ethan Ho <53266718+ethho@users.noreply.github.com> Date: Wed, 18 Sep 2024 10:43:51 -0500 Subject: [PATCH] Quiet docker pull in CI --- .github/workflows/development.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/development.yaml b/.github/workflows/development.yaml index 37e63510..b2f9bdcf 100644 --- a/.github/workflows/development.yaml +++ b/.github/workflows/development.yaml @@ -84,7 +84,7 @@ jobs: COMPOSE_HTTP_TIMEOUT: "120" run: | export HOST_UID=$(id -u) - docker compose --profile test up --build --exit-code-from djtest djtest + docker compose --profile test up --quiet-pull --build --exit-code-from djtest djtest lint: runs-on: ubuntu-latest strategy: @@ -135,7 +135,7 @@ jobs: export PACKAGE=datajoint export UPSTREAM_REPO=https://github.com/${GITHUB_REPOSITORY}.git export HOST_UID=$(id -u) - docker compose -f docs/docker-compose.yaml up --exit-code-from docs --build + docker compose -f docs/docker-compose.yaml up --quiet-pull --exit-code-from docs --build git push origin gh-pages publish-release: if: | @@ -216,7 +216,7 @@ jobs: - name: Publish pip release run: | export HOST_UID=$(id -u) - docker compose run --build \ + docker compose run --build --quiet-pull \ -e TWINE_USERNAME=${TWINE_USERNAME} -e TWINE_PASSWORD=${TWINE_PASSWORD} app \ sh -c "pip install twine && python -m twine upload dist/*" - name: Login to DockerHub