forked from CryZe/livesplit-one-druid
-
Notifications
You must be signed in to change notification settings - Fork 2
210 lines (179 loc) Β· 5.66 KB
/
rust.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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
name: Rust
on:
pull_request:
push:
branches:
- 'master'
- 'dev'
tags:
- '*'
# The colors mess with the problem matcher.
# env:
# CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
label:
- Windows aarch64
- Windows i686
- Windows x86_64
- Windows x86_64-v3
# - Linux arm Hardware Float
# - Linux armv7 Hardware Float
# - Linux aarch64
# - Linux i686
- Linux x86_64
- Linux x86_64-v3
- macOS aarch64
- macOS x86_64
- macOS x86_64-v3
include:
- label: Windows aarch64
target: aarch64-pc-windows-msvc
os: windows-latest
cross: skip
install_target: true
- label: Windows i686
target: i686-pc-windows-msvc
os: windows-latest
cross: skip
install_target: true
- label: Windows x86_64
target: x86_64-pc-windows-msvc
os: windows-latest
features: auto-splitting
cross: skip
- label: Windows x86_64-v3
target: x86_64-pc-windows-msvc
target_rename: x86_64_v3-pc-windows-msvc
rust_flags: -C target-cpu=x86-64-v3
os: windows-latest
features: auto-splitting
cross: skip
# - label: Linux arm Hardware Float
# target: arm-unknown-linux-gnueabihf
# os: ubuntu-latest
# - label: Linux armv7 Hardware Float
# target: armv7-unknown-linux-gnueabihf
# os: ubuntu-latest
# - label: Linux aarch64
# target: aarch64-unknown-linux-gnu
# os: ubuntu-latest
# features: auto-splitting
# - label: Linux i686
# target: i686-unknown-linux-gnu
# os: ubuntu-22.04
# apt_arch: i386
# cross: skip
# install_target: true
- label: Linux x86_64
target: x86_64-unknown-linux-gnu
os: ubuntu-22.04
apt_arch: amd64
features: auto-splitting
cross: skip
- label: Linux x86_64-v3
target: x86_64-unknown-linux-gnu
target_rename: x86_64_v3-unknown-linux-gnu
rust_flags: -C target-cpu=x86-64-v3
os: ubuntu-22.04
apt_arch: amd64
features: auto-splitting
cross: skip
- label: macOS aarch64
target: aarch64-apple-darwin
os: macOS-latest
features: auto-splitting
cross: skip
install_target: true
- label: macOS x86_64
target: x86_64-apple-darwin
os: macOS-latest
features: auto-splitting
cross: skip
install_target: true
- label: macOS x86_64-v3
target: x86_64-apple-darwin
target_rename: x86_64_v3-apple-darwin
rust_flags: -C target-cpu=x86-64-v3
os: macOS-latest
features: auto-splitting
cross: skip
install_target: true
steps:
- name: Checkout Commit
uses: actions/checkout@v4
- name: Install Rust
uses: hecrj/setup-rust-action@v2
with:
rust-version: 'stable'
- name: Install Target
if: matrix.install_target != ''
run: rustup target add ${{ matrix.target }}
- name: Download cross
if: matrix.cross == ''
uses: robinraju/[email protected]
with:
repository: "cross-rs/cross"
latest: true
fileName: "cross-x86_64-unknown-linux-gnu.tar.gz"
out-file-path: "/home/runner/.cargo/bin"
- name: Install cross
if: matrix.cross == ''
run: |
cd ~/.cargo/bin
tar -xzf cross-x86_64-unknown-linux-gnu.tar.gz
- name: Install apt packages
if: matrix.cross == 'skip' && startsWith(matrix.os, 'ubuntu-')
run: |
sudo dpkg --add-architecture ${{ matrix.apt_arch }}
sudo apt-get update
sudo apt-get install --assume-yes libgtk-3-dev:${{ matrix.apt_arch }}
- name: Build
run: bash .github/workflows/build.sh
env:
TARGET: ${{ matrix.target }}
SKIP_CROSS: ${{ matrix.cross }}
IS_DEPLOY: ${{ startsWith(github.ref, 'refs/tags/') }}
FEATURES: ${{ matrix.features }}
RUSTFLAGS: ${{ matrix.rust_flags }}
- name: Prepare Release
if: startsWith(github.ref, 'refs/tags/')
run: bash .github/workflows/before_deploy.sh
env:
OS_NAME: ${{ matrix.os }}
TARGET: ${{ matrix.target }}
RELEASE_TARGET: ${{ matrix.target_rename || matrix.target }}
- name: Release
if: startsWith(github.ref, 'refs/tags/')
uses: softprops/action-gh-release@v2
with:
generate_release_notes: true
files: livesplit-one-*.*
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
clippy:
runs-on: windows-latest
steps:
- name: Checkout Commit
uses: actions/checkout@v4
- name: Install Rust
uses: hecrj/setup-rust-action@v2
with:
components: clippy
- name: Run Clippy
run: cargo clippy --all-features
format:
runs-on: ubuntu-latest
steps:
- name: Checkout Commit
uses: actions/checkout@v4
- name: Install Rust
uses: hecrj/setup-rust-action@v2
with:
components: rustfmt
- name: Run cargo fmt
run: cargo fmt -- --check || true