-
Notifications
You must be signed in to change notification settings - Fork 5
109 lines (86 loc) · 2.35 KB
/
ci.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
name: Rust CI
on:
push:
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
- name: Setup Rust toolchain
run: rustup show
- name: Build Linux tool
run: |
cargo build
cargo build --release
- name: Check if Linux tool can start
run: cargo run -- --help
- name: Upload Linux Debug tool
uses: actions/upload-artifact@v3
with:
name: qmk_hid_debug_linux
path: target/debug/qmk_hid
- name: Upload Linux Relase tool
uses: actions/upload-artifact@v3
with:
name: qmk_hid_linux
path: target/release/qmk_hid
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
cargo build --release
- name: Check if Windows tool can start
run: cargo run -- --help
- name: Upload Windows Debug App
uses: actions/upload-artifact@v3
with:
name: qmk_hid_debug_windows
path: target/debug/qmk_hid.exe
- name: Upload Windows Release App
uses: actions/upload-artifact@v3
with:
name: qmk_hid_windows
path: target/release/qmk_hid.exe
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
- name: Setup Rust toolchain
run: rustup show
- name: Run cargo fmt
run: cargo fmt --all -- --check
- name: Run cargo clippy
run: cargo clippy -- -D warnings