Skip to content

Commit

Permalink
meta: fixup github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
theacodes committed Feb 11, 2024
1 parent 8ec98cc commit 27e38c6
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- name: Cache ~/.local
id: cache-local
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.local
key: cache-local
Expand All @@ -37,8 +37,8 @@ jobs:
if: steps.cache-local.outputs.cache-hit != 'true'
run: |
mkdir -p ~/.local
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"
tar -C ~/.local --strip-components=1 -xaf arm-gnu-toolchain-13.2.rel1-x86_64-arm-none-eabi.tar.xz
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"
tar -C ~/.local --strip-components=1 -xaf arm.tar.xz
- name: Set up Python 3.12
uses: actions/setup-python@v5
Expand Down Expand Up @@ -86,9 +86,9 @@ jobs:
ninja
- name: Upload firmware artifacts
- uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v4
with:
name: gemini-firmware.elf
name: gemini-firmware
path: firmware/build/gemini-firmware.*
if-no-files-found: error

Expand Down
8 changes: 4 additions & 4 deletions firmware/tests/gem_test.h
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ inline static void print_f16(const fix16_t val) {

/* Suites */

MunitSuite test_midi_core_suite;
MunitSuite test_voice_params_suite;
MunitSuite test_bezier_suite;
MunitSuite test_oscillator_suite;
extern MunitSuite test_midi_core_suite;
extern MunitSuite test_voice_params_suite;
extern MunitSuite test_bezier_suite;
extern MunitSuite test_oscillator_suite;

0 comments on commit 27e38c6

Please sign in to comment.