File tree Expand file tree Collapse file tree 1 file changed +15
-0
lines changed Expand file tree Collapse file tree 1 file changed +15
-0
lines changed Original file line number Diff line number Diff line change @@ -22,11 +22,18 @@ jobs:
22
22
- uses : actions/checkout@v2
23
23
with :
24
24
submodules : false # LVGL makefile manually installs the submodule
25
+
25
26
- uses : carlosperate/arm-none-eabi-gcc-action@v1
26
27
with :
27
28
release : ' 10.3-2021.07' # The arm-none-eabi-gcc release to use.
29
+
28
30
- name : setup-riscv-toolchain
29
31
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
+
30
37
- name : ci-format
31
38
run : pushd examples; ./format_all.sh || exit; popd
32
39
@@ -42,12 +49,20 @@ jobs:
42
49
- uses : actions/checkout@v2
43
50
with :
44
51
submodules : recursive
52
+
45
53
- uses : carlosperate/arm-none-eabi-gcc-action@v1
46
54
with :
47
55
release : ' 10.3-2021.07' # The arm-none-eabi-gcc release to use.
56
+
48
57
- name : setup-riscv-toolchain
49
58
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
+
50
64
- name : ci-build
51
65
run : pushd examples; ./build_all.sh || exit; popd
66
+
52
67
- name : ci-debug-build
53
68
run : pushd examples/blink; make debug RAM_START=0x20004000 FLASH_INIT=0x30051 || exit; popd
You can’t perform that action at this time.
0 commit comments