Skip to content

Commit f4abc4d

Browse files
lschuermannppannuto
authored andcommitted
workflows/ci: disable wget progress output spamming CI logs
1 parent bb69a2f commit f4abc4d

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,18 @@ jobs:
3737
- uses: actions/checkout@v2
3838
with:
3939
submodules: recursive
40+
4041
- uses: carlosperate/arm-none-eabi-gcc-action@v1
4142
- run: arm-none-eabi-gcc --version
4243
- name: setup-riscv-toolchain
4344
run: sudo apt-get install -y gcc-riscv64-unknown-elf
45+
46+
- name: Disable wget progress output
47+
run: |
48+
echo "verbose = off" >> $HOME/.wgetrc
49+
4450
- name: ci-build
4551
run: pushd examples; ./build_all.sh || exit; popd
52+
4653
- name: ci-debug-build
4754
run: pushd examples/blink; make debug RAM_START=0x20004000 FLASH_INIT=0x30051 || exit; popd

0 commit comments

Comments
 (0)