File tree Expand file tree Collapse file tree 3 files changed +10
-10
lines changed Expand file tree Collapse file tree 3 files changed +10
-10
lines changed Original file line number Diff line number Diff line change 42
42
run : |
43
43
sudo apt-get update
44
44
sudo apt-get install -y libudev-dev
45
- cargo make b1display uf2
46
- cargo make c1minimal uf2
47
- cargo make ledmatrix uf2
45
+ cargo make --cwd b1display uf2
46
+ cargo make --cwd c1minimal uf2
47
+ cargo make --cwd ledmatrix uf2
48
48
49
49
- name : Upload UF2 files
50
50
uses : actions/upload-artifact@v3
59
59
run : |
60
60
sudo apt-get update
61
61
sudo apt-get install -y llvm
62
- cargo make b1display bin
63
- cargo make c1minimal bin
64
- cargo make ledmatrix bin
62
+ cargo make --cwd b1display bin
63
+ cargo make --cwd c1minimal bin
64
+ cargo make --cwd ledmatrix bin
65
65
66
66
- name : Upload bin files
67
67
uses : actions/upload-artifact@v3
Original file line number Diff line number Diff line change 66
66
run : cargo make --cwd inputmodule-control build-release
67
67
68
68
- name : Check if Linux tool can start
69
- run : cargo make --cwd inputmodule-control run -- --help | grep 'RAW Hid and VIA commandline'
69
+ run : cargo make --cwd inputmodule-control run -- --help | grep 'RAW HID and VIA commandline'
70
70
71
71
- name : Upload Linux tool
72
72
uses : actions/upload-artifact@v3
89
89
run : cargo make --cwd inputmodule-control build-release
90
90
91
91
- name : Check if Windows tool can start
92
- run : cargo make --cwd inputmodule-control run -- --help | grep 'RAW Hid and VIA commandline'
92
+ run : cargo make --cwd inputmodule-control run -- --help | grep 'RAW HID and VIA commandline'
93
93
94
94
- name : Upload Windows App
95
95
uses : actions/upload-artifact@v3
Original file line number Diff line number Diff line change 53
53
run : cargo build --release --target x86_64-unknown-linux-gnu -p inputmodule-control
54
54
55
55
- name : Check if tool can start
56
- run : cargo run --release --target x86_64-unknown-linux-gnu -p inputmodule-control -- --help | grep 'RAW Hid and VIA commandline'
56
+ run : cargo run --release --target x86_64-unknown-linux-gnu -p inputmodule-control -- --help | grep 'RAW HID and VIA commandline'
57
57
58
58
windows-software :
59
59
name : Build Windows
70
70
run : cargo build --release --target x86_64-pc-windows-msvc -p inputmodule-control
71
71
72
72
- name : Check if tool can start
73
- run : cargo run --release --target x86_64-pc-windows-msvc -p inputmodule-control -- --help | grep 'RAW Hid and VIA commandline'
73
+ run : cargo run --release --target x86_64-pc-windows-msvc -p inputmodule-control -- --help | grep 'RAW HID and VIA commandline'
74
74
75
75
lint-format :
76
76
name : Lint and format check
You can’t perform that action at this time.
0 commit comments