Skip to content

Commit

Permalink
(github-actions) Run docker build quietly
Browse files Browse the repository at this point in the history
  • Loading branch information
axel-op committed Mar 1, 2024
1 parent 192e469 commit 4b8ffe8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docker-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ jobs:
- name: Build new image
if: steps.check.outputs.should_push == 'true'
run: sudo docker build --label "fluttersha=$CURRENT_FLUTTER" --label "panaversion=$CURRENT_PANA" --label "dartdigest=$CURRENT_DART" -f $DOCKERFILE -t $IMAGE:$TAG .
run: sudo docker build --quiet --label "fluttersha=$CURRENT_FLUTTER" --label "panaversion=$CURRENT_PANA" --label "dartdigest=$CURRENT_DART" -f $DOCKERFILE -t $IMAGE:$TAG .

- name: Test new image
if: steps.check.outputs.should_push == 'true'
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Build container
run: sudo docker build -f $DOCKERFILE -t $IMAGE .
run: sudo docker build --quiet -f $DOCKERFILE -t $IMAGE .
- name: Run tests
id: steptest
run: |
Expand Down Expand Up @@ -68,7 +68,7 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Build container
run: sudo docker build -f $DOCKERFILE -t $IMAGE .
run: sudo docker build --quiet -f $DOCKERFILE -t $IMAGE .
- name: Run tests
env:
WORKSPACE: /tmp
Expand All @@ -84,7 +84,7 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Build container
run: sudo docker build -f $DOCKERFILE -t $IMAGE .
run: sudo docker build --quiet -f $DOCKERFILE -t $IMAGE .
- name: Run tests
continue-on-error: true
run: |
Expand Down

0 comments on commit 4b8ffe8

Please sign in to comment.