File tree 2 files changed +9
-9
lines changed
2 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 28
28
29
29
- name : Cache ~/.local
30
30
id : cache-local
31
- uses : actions/cache@v3
31
+ uses : actions/cache@v4
32
32
with :
33
33
path : ~/.local
34
34
key : cache-local
37
37
if : steps.cache-local.outputs.cache-hit != 'true'
38
38
run : |
39
39
mkdir -p ~/.local
40
- wget --no-verbose "https://developer.arm.com/-/media/Files/downloads/gnu/13.2.rel1/binrel/arm-gnu-toolchain-13.2.rel1-x86_64-arm-none-eabi.tar.xz?rev=e434b9ea4afc4ed7998329566b764309&hash=CA590209F5774EE1C96E6450E14A3E26"
41
- tar -C ~/.local --strip-components=1 -xaf arm-gnu-toolchain-13.2.rel1-x86_64-arm-none-eabi .tar.xz
40
+ wget --no-verbose -O arm.tar.xz "https://developer.arm.com/-/media/Files/downloads/gnu/13.2.rel1/binrel/arm-gnu-toolchain-13.2.rel1-x86_64-arm-none-eabi.tar.xz?rev=e434b9ea4afc4ed7998329566b764309&hash=CA590209F5774EE1C96E6450E14A3E26"
41
+ tar -C ~/.local --strip-components=1 -xaf arm.tar.xz
42
42
43
43
- name : Set up Python 3.12
44
44
uses : actions/setup-python@v5
86
86
ninja
87
87
88
88
- name : Upload firmware artifacts
89
- - uses : actions/upload-artifact@v4
89
+ uses : actions/upload-artifact@v4
90
90
with :
91
- name : gemini-firmware.elf
91
+ name : gemini-firmware
92
92
path : firmware/build/gemini-firmware.*
93
93
if-no-files-found : error
94
94
Original file line number Diff line number Diff line change @@ -68,7 +68,7 @@ inline static void print_f16(const fix16_t val) {
68
68
69
69
/* Suites */
70
70
71
- MunitSuite test_midi_core_suite ;
72
- MunitSuite test_voice_params_suite ;
73
- MunitSuite test_bezier_suite ;
74
- MunitSuite test_oscillator_suite ;
71
+ extern MunitSuite test_midi_core_suite ;
72
+ extern MunitSuite test_voice_params_suite ;
73
+ extern MunitSuite test_bezier_suite ;
74
+ extern MunitSuite test_oscillator_suite ;
You can’t perform that action at this time.
0 commit comments