Skip to content

Commit e3d84ef

Browse files
committed
Quiet docker pull in CI
1 parent 91693eb commit e3d84ef

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/development.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ jobs:
8484
COMPOSE_HTTP_TIMEOUT: "120"
8585
run: |
8686
export HOST_UID=$(id -u)
87-
docker compose --profile test up --build --exit-code-from djtest djtest
87+
docker compose --profile test up --quiet-pull --build --exit-code-from djtest djtest
8888
lint:
8989
runs-on: ubuntu-latest
9090
strategy:
@@ -135,7 +135,7 @@ jobs:
135135
export PACKAGE=datajoint
136136
export UPSTREAM_REPO=https://github.com/${GITHUB_REPOSITORY}.git
137137
export HOST_UID=$(id -u)
138-
docker compose -f docs/docker-compose.yaml up --exit-code-from docs --build
138+
docker compose -f docs/docker-compose.yaml up --quiet-pull --exit-code-from docs --build
139139
git push origin gh-pages
140140
publish-release:
141141
if: |
@@ -216,7 +216,7 @@ jobs:
216216
- name: Publish pip release
217217
run: |
218218
export HOST_UID=$(id -u)
219-
docker compose run --build \
219+
docker compose run --build --quiet-pull \
220220
-e TWINE_USERNAME=${TWINE_USERNAME} -e TWINE_PASSWORD=${TWINE_PASSWORD} app \
221221
sh -c "pip install twine && python -m twine upload dist/*"
222222
- name: Login to DockerHub

0 commit comments

Comments
 (0)