We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb69a2f commit f4abc4dCopy full SHA for f4abc4d
.github/workflows/ci.yml
@@ -37,11 +37,18 @@ jobs:
37
- uses: actions/checkout@v2
38
with:
39
submodules: recursive
40
+
41
- uses: carlosperate/arm-none-eabi-gcc-action@v1
42
- run: arm-none-eabi-gcc --version
43
- name: setup-riscv-toolchain
44
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
50
- name: ci-build
51
run: pushd examples; ./build_all.sh || exit; popd
52
53
- name: ci-debug-build
54
run: pushd examples/blink; make debug RAM_START=0x20004000 FLASH_INIT=0x30051 || exit; popd
0 commit comments