Skip to content

Commit

Permalink
Add flag to remove redundant progress logs in CIs
Browse files Browse the repository at this point in the history
Signed-off-by: Tai Le Manh <manhtai.lmt@gmail.com>
  • Loading branch information
tlm365 authored and tdcmeehan committed Apr 5, 2024
1 parent f024583 commit c5674d6
Show file tree
Hide file tree
Showing 12 changed files with 41 additions and 14 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/codenotify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,10 @@ jobs:
runs-on: ubuntu-latest
name: "Label and notify"
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}
show-progress: false
- uses: sourcegraph/codenotify@v0.6.4
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,9 @@ jobs:
group: ${{ github.workflow }}-test-${{ matrix.modules }}-${{ github.event.pull_request.number }}
cancel-in-progress: true
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
show-progress: false
- uses: actions/setup-java@v1
with:
java-version: 8
Expand Down
8 changes: 6 additions & 2 deletions .github/workflows/hive-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,9 @@ jobs:
group: ${{ github.workflow }}-hive-tests-${{ github.event.pull_request.number }}
cancel-in-progress: true
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
show-progress: false
- uses: actions/setup-java@v1
with:
java-version: 8
Expand Down Expand Up @@ -88,7 +90,9 @@ jobs:
group: ${{ github.workflow }}-hive-dockerized-tests-${{ github.event.pull_request.number }}
cancel-in-progress: true
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
show-progress: false
- uses: actions/setup-java@v1
with:
java-version: 8
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/kudu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,9 @@ jobs:
group: ${{ github.workflow }}-kudu-${{ github.event.pull_request.number }}
cancel-in-progress: true
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
show-progress: false
- uses: actions/setup-java@v1
with:
java-version: 8
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/maven-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@ jobs:
df -h
sudo apt-get clean
df -h
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
show-progress: false
- uses: actions/setup-java@v1
with:
java-version: 8
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/product-tests-basic-environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,9 @@ jobs:
sudo apt-get clean
rm -rf /opt/hostedtoolcache
df -h
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
show-progress: false
- uses: actions/setup-java@v1
with:
java-version: 8
Expand Down
8 changes: 6 additions & 2 deletions .github/workflows/product-tests-specific-environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,9 @@ jobs:
sudo apt-get clean
rm -rf /opt/hostedtoolcache
df -h
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
show-progress: false
- uses: actions/setup-java@v1
with:
java-version: 8
Expand Down Expand Up @@ -91,7 +93,9 @@ jobs:
sudo apt-get clean
rm -rf /opt/hostedtoolcache
df -h
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
show-progress: false
- uses: actions/setup-java@v1
with:
java-version: 8
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/singlestore-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,9 @@ jobs:
group: ${{ github.workflow }}-singlestore-dockerized-tests-${{ github.event.pull_request.number }}
cancel-in-progress: true
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
show-progress: false
- name: Remove unnecessary pre-installed toolchains for free disk spaces
run: |
echo "=== BEFORE ==="
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/spark-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,9 @@ jobs:
group: ${{ github.workflow }}-spark-integration-${{ github.event.pull_request.number }}
cancel-in-progress: true
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
show-progress: false
- uses: actions/setup-java@v1
with:
java-version: 8
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/test-other-modules.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,9 @@ jobs:
group: ${{ github.workflow }}-test-other-modules-${{ github.event.pull_request.number }}
cancel-in-progress: true
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
show-progress: false
- uses: actions/setup-java@v1
with:
java-version: 8
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,10 @@ jobs:
group: ${{ github.workflow }}-test-${{ matrix.modules }}-${{ github.event.pull_request.number }}
cancel-in-progress: true
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
if: needs.changes.outputs.codechange == 'true'
with:
show-progress: false
- uses: actions/setup-java@v1
if: needs.changes.outputs.codechange == 'true'
with:
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/web-ui-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@ jobs:
group: ${{ github.workflow }}-web-ui-checks-${{ github.event.pull_request.number }}
cancel-in-progress: true
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
show-progress: false
- name: Web UI Checks
run: presto-main/bin/check_webui.sh

0 comments on commit c5674d6

Please sign in to comment.