Skip to content

Commit b0d50fc

Browse files
committed
Merge branch 'main' into qtpy-rp2040
2 parents 529ec08 + 7e61d58 commit b0d50fc

File tree

3 files changed

+18
-15
lines changed

3 files changed

+18
-15
lines changed

.github/workflows/firmware.yml

Lines changed: 15 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Firmware Checks
1+
name: Firmware
22

33
on:
44
push:
@@ -68,28 +68,31 @@ jobs:
6868
- name: Upload ledmatrix files
6969
uses: actions/upload-artifact@v3
7070
with:
71-
name: inputmodule_fw_bin
71+
name: ledmatrix_fw_${{github.sha}}
7272
path: |
73-
ledmatrix.bin
74-
ledmatrix.uf2
75-
ledmatrix_10k.uf2
76-
ledmatrix_evt.uf2
73+
# Main firmware
74+
target/thumbv6m-none-eabi/release/ledmatrix.bin
75+
target/thumbv6m-none-eabi/release/ledmatrix.uf2
76+
# EVT 10k resistor
77+
target/thumbv6m-none-eabi/release/ledmatrix_10k.uf2
78+
# EVT (27k) resistor
79+
target/thumbv6m-none-eabi/release/ledmatrix_evt.uf2
7780
7881
- name: Upload b1display files
7982
uses: actions/upload-artifact@v3
8083
with:
81-
name: inputmodule_fw_uf2
84+
name: b1display_fw_${{github.sha}}
8285
path: |
83-
b1display.bin
84-
b1display.uf2
86+
target/thumbv6m-none-eabi/release/b1display.bin
87+
target/thumbv6m-none-eabi/release/b1display.uf2
8588
8689
- name: Upload c1minimal files
8790
uses: actions/upload-artifact@v3
8891
with:
89-
name: inputmodule_fw_uf2
92+
name: c1minimal_fw_${{github.sha}}
9093
path: |
91-
c1minimal.bin
92-
c1minimal.uf2
94+
target/thumbv6m-none-eabi/release/c1minimal.bin
95+
target/thumbv6m-none-eabi/release/c1minimal.uf2
9396
9497
linting:
9598
name: Linting

.github/workflows/software.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Software Checks
1+
name: Software
22

33
on:
44
push:

.github/workflows/traditional-cargo.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Test builds without cargo-make
22
# Not the recommended path, but should make sure it still works
3-
name: Traditional Cargo Workflow
3+
name: Traditional Cargo
44

55
on:
66
push:
@@ -75,7 +75,7 @@ jobs:
7575
run: cargo run --release --target x86_64-pc-windows-msvc -p inputmodule-control -- --help | grep 'RAW HID and VIA commandline'
7676

7777
lint-format:
78-
name: Lint and format check
78+
name: Lint and format
7979
runs-on: ubuntu-latest
8080
steps:
8181
- uses: actions/checkout@v3

0 commit comments

Comments
 (0)