Skip to content

Commit

Permalink
Quiet docker pull in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
ethho committed Sep 18, 2024
1 parent 91693eb commit e3d84ef
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/development.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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: |
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit e3d84ef

Please sign in to comment.