Skip to content

Commit

Permalink
Plain progress when pulling images too
Browse files Browse the repository at this point in the history
Signed-off-by: Benoit Donneaux <[email protected]>
  • Loading branch information
btlogy committed Feb 2, 2024
1 parent 7d79760 commit a382c9f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ jobs:
CLIENT=0 || CLIENT=1
# Build images if client is missing
test $CLIENT -eq 0 || \
docker compose --progress=plain -f docker-compose.yml -f docker-compose.e2e.yml --profile e2e \
docker compose --progress plain -f docker-compose.yml -f docker-compose.e2e.yml --profile e2e \
build --build-arg uid=$(id -u) --build-arg gid=${_GID} \
client
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/integrate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ jobs:
CLIENT_E2E=0 || CLIENT_E2E=1
# Build images if any client is missing
test $CLIENT -eq 0 -a $CLIENT_E2E -eq 0 || \
docker compose --progress=plain -f docker-compose.yml -f docker-compose.e2e.yml --profile e2e \
docker compose --progress plain -f docker-compose.yml -f docker-compose.e2e.yml --profile e2e \
build --build-arg uid=$(id -u) --build-arg gid=${_GID}
- name: Setup containers
Expand All @@ -99,7 +99,7 @@ jobs:
- name: Start up devserver
run: |
docker compose up -d client
docker compose --progress plain up -d client
docker compose exec client ./scripts/wait-for-webpack.sh
docker compose ps
docker compose logs client
Expand All @@ -113,7 +113,7 @@ jobs:

- name: Run END-2-END tests
run: |
docker compose -f docker-compose.yml -f docker-compose.e2e.yml --profile e2e run --rm client-e2e
docker compose --progress plain -f docker-compose.yml -f docker-compose.e2e.yml --profile e2e run --rm client-e2e
- name: Stop the containers
run: docker compose -f docker-compose.yml -f docker-compose.e2e.yml --profile e2e down
Expand Down

0 comments on commit a382c9f

Please sign in to comment.