-
Notifications
You must be signed in to change notification settings - Fork 2
105 lines (98 loc) · 3 KB
/
main.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
name: Run clippy, test suit and make test builds
on:
push:
branches: [master, staging, trying]
pull_request:
branches: [master]
schedule:
- cron: "19 2 * * 4"
env:
CARGO_TERM_COLOR: always
jobs:
clippy:
name: Lints
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: sudo apt-get update
- run: sudo apt-get install libatk1.0-dev libgtk-3-dev libgdk3.0-cil-dev
- uses: dtolnay/rust-toolchain@nightly
with:
components: rust-src, rustfmt, clippy
- run: cargo fmt --all -- --check
- run: cargo clippy
test:
name: Test suite
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: sudo apt-get update
- run: sudo apt-get install libatk1.0-dev libgtk-3-dev libgdk3.0-cil-dev
- uses: dtolnay/rust-toolchain@nightly
with:
components: rust-src
- run: cargo test
build-macos:
name: Build macOS
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@nightly
with:
components: rust-src
- run: mkdir -p out-debug
- run: mkdir -p out
- run: cargo install cargo-bundle
- run: cargo bundle
- run: mkdir -p out-debug
- run: tar -cvf out-debug/macOSDebug.tar -C target/debug/bundle/osx/ $(ls target/debug/bundle/osx/)
- run: cargo bundle --release
- run: mkdir -p out
- run: tar -cvf out/macOSRelease.tar -C target/release/bundle/osx/ $(ls target/release/bundle/osx/)
- uses: actions/[email protected]
with:
name: macOS Debug
path: out-debug/macOSDebug.tar
- uses: actions/[email protected]
with:
name: macOS Release
path: out/macOSRelease.tar
build-linux:
name: Build Linux
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: sudo apt-get update
- run: sudo apt-get install libatk1.0-dev libgtk-3-dev libgdk3.0-cil-dev
- uses: dtolnay/rust-toolchain@nightly
with:
components: rust-src
- run: cargo install cargo-bundle
- run: cargo bundle
- run: cargo bundle --release
- uses: actions/[email protected]
with:
name: Linux Debug
path: target/debug/bundle/deb/*.deb
- uses: actions/[email protected]
with:
name: Linux Release
path: target/release/bundle/deb/*.deb
build-windows:
name: Build Windows
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@nightly
with:
components: rust-src
- run: cargo build -Zunstable-options --out-dir=out-debug
- run: cargo build --release -Zunstable-options --out-dir=out
- uses: actions/[email protected]
with:
name: Windows Debug
path: out-debug/*.exe
- uses: actions/[email protected]
with:
name: Windows Release
path: out/*.exe