-
Notifications
You must be signed in to change notification settings - Fork 29
115 lines (91 loc) · 3.01 KB
/
software.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
name: Software CI Checks
on:
push:
env:
CARGO_TERM_COLOR: always
CARGO_NET_GIT_FETCH_WITH_CLI: true
jobs:
# Enable later
#freebsd-cross-build:
# name: Cross-Build for FreeBSD
# runs-on: 'ubuntu-22.04'
# steps:
# - uses: actions/checkout@v3
# - name: Setup Rust toolchain
# run: rustup show
# - name: Install cross compilation tool
# run: cargo install cross
# - name: Build FreeBSD tool
# run: cross build --target=x86_64-unknown-freebsd
# - name: Upload FreeBSD App
# uses: actions/upload-artifact@v3
# with:
# name: qmk_hid_freebsd
# path: target/x86_64-unknown-freebsd/debug/qmk_hid
build:
name: Build Linux
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y libudev-dev libasound2-dev
- name: Setup Rust toolchain
run: rustup show
- name: Build Linux tool
run: cargo build --release --target x86_64-unknown-linux-gnu -p inputmodule-control
- name: Check if Linux tool can start
run: cargo run --release --target x86_64-unknown-linux-gnu -p inputmodule-control -- --help
- name: Upload Linux tool
uses: actions/upload-artifact@v3
with:
name: inputmodule-control
path: target/x86_64-unknown-linux-gnu/release/inputmodule-control
build-windows:
name: Build Windows
runs-on: windows-2022
steps:
- uses: actions/checkout@v3
- name: Setup Rust toolchain
run: rustup show
- name: Build Windows tool
run: cargo build --release --target x86_64-pc-windows-msvc -p inputmodule-control
- name: Check if Windows tool can start
run: cargo run --release --target x86_64-pc-windows-msvc -p inputmodule-control -- --help
- name: Upload Windows App
uses: actions/upload-artifact@v3
with:
name: inputmodule-control.exe
path: target/x86_64-pc-windows-msvc/release/inputmodule-control.exe
# Or manually with
# pyinstaller --onefile --windowed --add-data 'res;res' ledmatrix_control.py
build-gui:
name: Build GUI
runs-on: windows-latest
# runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: Create Executable
uses: Martin005/pyinstaller-action@main
with:
python_ver: '3.11'
spec: ledmatrix_control.py #'src/build.spec'
requirements: 'requirements.txt'
upload_exe_with_name: 'ledmatrix_control.py'
options: --onefile, --windowed, --add-data 'res;res'
lints:
name: Lints
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y libudev-dev libasound2-dev
- name: Setup Rust toolchain
run: rustup show
- name: Run cargo fmt
run: cargo fmt -p inputmodule-control -- --check
- name: Run cargo clippy
run: cargo clippy --target x86_64-unknown-linux-gnu -p inputmodule-control -- -D warnings