Skip to content

Commit

Permalink
workflows/ci: disable wget progress output spamming CI logs
Browse files Browse the repository at this point in the history
  • Loading branch information
lschuermann committed Jan 6, 2025
1 parent 6a98753 commit a033684
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,18 @@ jobs:
- uses: actions/checkout@v2
with:
submodules: false # LVGL makefile manually installs the submodule

- uses: carlosperate/arm-none-eabi-gcc-action@v1
with:
release: '10.3-2021.07' # The arm-none-eabi-gcc release to use.

- name: setup-riscv-toolchain
run: sudo apt-get install -y gcc-riscv64-unknown-elf

- name: Disable wget progress output
run: |
echo "verbose = off" >> $HOME/.wgetrc
- name: ci-format
run: pushd examples; ./format_all.sh || exit; popd

Expand All @@ -42,12 +49,20 @@ jobs:
- uses: actions/checkout@v2
with:
submodules: recursive

- uses: carlosperate/arm-none-eabi-gcc-action@v1
with:
release: '10.3-2021.07' # The arm-none-eabi-gcc release to use.

- name: setup-riscv-toolchain
run: sudo apt-get install -y gcc-riscv64-unknown-elf

- name: Disable wget progress output
run: |
echo "verbose = off" >> $HOME/.wgetrc
- name: ci-build
run: pushd examples; ./build_all.sh || exit; popd

- name: ci-debug-build
run: pushd examples/blink; make debug RAM_START=0x20004000 FLASH_INIT=0x30051 || exit; popd

0 comments on commit a033684

Please sign in to comment.