Skip to content

Commit a033684

Browse files
committed
workflows/ci: disable wget progress output spamming CI logs
1 parent 6a98753 commit a033684

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

.github/workflows/ci.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,18 @@ jobs:
2222
- uses: actions/checkout@v2
2323
with:
2424
submodules: false # LVGL makefile manually installs the submodule
25+
2526
- uses: carlosperate/arm-none-eabi-gcc-action@v1
2627
with:
2728
release: '10.3-2021.07' # The arm-none-eabi-gcc release to use.
29+
2830
- name: setup-riscv-toolchain
2931
run: sudo apt-get install -y gcc-riscv64-unknown-elf
32+
33+
- name: Disable wget progress output
34+
run: |
35+
echo "verbose = off" >> $HOME/.wgetrc
36+
3037
- name: ci-format
3138
run: pushd examples; ./format_all.sh || exit; popd
3239

@@ -42,12 +49,20 @@ jobs:
4249
- uses: actions/checkout@v2
4350
with:
4451
submodules: recursive
52+
4553
- uses: carlosperate/arm-none-eabi-gcc-action@v1
4654
with:
4755
release: '10.3-2021.07' # The arm-none-eabi-gcc release to use.
56+
4857
- name: setup-riscv-toolchain
4958
run: sudo apt-get install -y gcc-riscv64-unknown-elf
59+
60+
- name: Disable wget progress output
61+
run: |
62+
echo "verbose = off" >> $HOME/.wgetrc
63+
5064
- name: ci-build
5165
run: pushd examples; ./build_all.sh || exit; popd
66+
5267
- name: ci-debug-build
5368
run: pushd examples/blink; make debug RAM_START=0x20004000 FLASH_INIT=0x30051 || exit; popd

0 commit comments

Comments
 (0)