Skip to content

Commit d591366

Browse files
committed
meta: fixup github actions
1 parent 8ec98cc commit d591366

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
2929
- name: Cache ~/.local
3030
id: cache-local
31-
uses: actions/cache@v3
31+
uses: actions/cache@v4
3232
with:
3333
path: ~/.local
3434
key: cache-local
@@ -37,8 +37,8 @@ jobs:
3737
if: steps.cache-local.outputs.cache-hit != 'true'
3838
run: |
3939
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
4242
4343
- name: Set up Python 3.12
4444
uses: actions/setup-python@v5
@@ -86,7 +86,7 @@ jobs:
8686
ninja
8787
8888
- name: Upload firmware artifacts
89-
- uses: actions/upload-artifact@v4
89+
uses: actions/upload-artifact@v4
9090
with:
9191
name: gemini-firmware.elf
9292
path: firmware/build/gemini-firmware.*

firmware/tests/gem_test.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ inline static void print_f16(const fix16_t val) {
6868

6969
/* Suites */
7070

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;

0 commit comments

Comments
 (0)