forked from AdnanHodzic/auto-cpufreq
-
Notifications
You must be signed in to change notification settings - Fork 0
450 lines (384 loc) · 12.8 KB
/
build-linux.yml
File metadata and controls
450 lines (384 loc) · 12.8 KB
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
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
name: Linux Build
on:
push:
paths-ignore:
- "README.md"
- ".gitignore"
- "LICENSE"
- "*.md"
- "docs/**"
pull_request:
paths-ignore:
- "README.md"
- ".gitignore"
- "LICENSE"
- "*.md"
- "docs/**"
env:
CARGO_TERM_COLOR: always
RUST_BACKTRACE: 1
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
defaults:
run:
working-directory: auto-cpufreq
permissions:
contents: write
jobs:
format:
name: Check formatting
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt
- name: Auto-fix formatting
run: cargo fmt --all
- name: Check for formatting changes
id: fmt_diff
working-directory: .
run: |
git diff --exit-code || echo "has_changes=true" >> $GITHUB_OUTPUT
- name: Commit formatting fixes (branch only)
if: steps.fmt_diff.outputs.has_changes == 'true' && github.event_name == 'push' && !startsWith(github.ref, 'refs/tags/')
working-directory: .
run: |
git config --local user.email "github-actions[bot]@users.noreply.github.com"
git config --local user.name "github-actions[bot]"
git add -A
git commit -m "style: auto-fix cargo fmt"
git push
- name: Warn on tag push with formatting issues
if: steps.fmt_diff.outputs.has_changes == 'true' && startsWith(github.ref, 'refs/tags/')
working-directory: .
run: |
echo "⚠️ Formatting issues exist but continuing for tag release."
echo "Run 'cargo fmt --all' before tagging next time."
- name: Fail on PR with formatting issues
if: steps.fmt_diff.outputs.has_changes == 'true' && github.event_name == 'pull_request'
run: |
echo "❌ Formatting issues found. Run 'cargo fmt --all' locally."
exit 1
clippy:
name: Clippy lints
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
with:
components: clippy
- name: Install dependencies
working-directory: .
run: |
sudo apt-get update
sudo apt-get install -y \
pkg-config \
libssl-dev \
libdbus-1-dev \
dmidecode \
libgtk-4-dev \
libappindicator3-dev \
gir1.2-appindicator3-0.1 \
libglib2.0-dev \
libcairo2-dev \
libpango1.0-dev \
libgdk-pixbuf2.0-dev \
gobject-introspection \
libgirepository1.0-dev
- name: Cache cargo
uses: actions/cache@v4
with:
path: |
~/.cargo/registry
~/.cargo/git
auto-cpufreq/target
key: ${{ runner.os }}-cargo-clippy-${{ hashFiles('auto-cpufreq/Cargo.lock') }}
- name: Run clippy
run: cargo clippy --all-targets --all-features -- -D warnings
build_cli:
name: Build CLI (no GUI)
runs-on: ubuntu-latest
needs: [format, clippy]
steps:
- uses: actions/checkout@v4
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
- name: Install dependencies
working-directory: .
run: |
sudo apt-get update
sudo apt-get install -y \
pkg-config \
libssl-dev \
libdbus-1-dev \
dmidecode
- name: Cache cargo
uses: actions/cache@v4
with:
path: |
~/.cargo/registry
~/.cargo/git
auto-cpufreq/target
key: ${{ runner.os }}-cargo-cli-${{ hashFiles('auto-cpufreq/Cargo.lock') }}
- name: Build release (CLI only)
run: cargo build --release --verbose
- name: Run tests
run: cargo test --release --verbose
continue-on-error: true
- name: Check binary
run: |
ls -lh target/release/auto-cpufreq
file target/release/auto-cpufreq
ldd target/release/auto-cpufreq || true
- name: Upload CLI binary
uses: actions/upload-artifact@v4
with:
name: auto-cpufreq-linux-cli
path: auto-cpufreq/target/release/auto-cpufreq
retention-days: 30
build_gui:
name: Build with GUI (GTK4)
runs-on: ubuntu-latest
needs: [format, clippy]
steps:
- uses: actions/checkout@v4
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
- name: Install dependencies
working-directory: .
run: |
sudo apt-get update
sudo apt-get install -y \
pkg-config \
libssl-dev \
libdbus-1-dev \
dmidecode \
libgtk-4-dev \
libappindicator3-dev \
gir1.2-appindicator3-0.1 \
libglib2.0-dev \
libcairo2-dev \
libpango1.0-dev \
libgdk-pixbuf2.0-dev \
gobject-introspection \
libgirepository1.0-dev
- name: Cache cargo
uses: actions/cache@v4
with:
path: |
~/.cargo/registry
~/.cargo/git
auto-cpufreq/target
key: ${{ runner.os }}-cargo-gui-${{ hashFiles('auto-cpufreq/Cargo.lock') }}
- name: Build release (with GUI)
run: cargo build --release --features gui --verbose
- name: Check binaries
run: |
ls -lh target/release/auto-cpufreq*
file target/release/auto-cpufreq
[ -f target/release/auto-cpufreq-gtk ] && file target/release/auto-cpufreq-gtk || echo "⚠️ GUI binary not found"
[ -f target/release/auto-cpufreq-tray ] && file target/release/auto-cpufreq-tray || echo "⚠️ Tray binary not found"
- name: Upload GUI binaries
uses: actions/upload-artifact@v4
with:
name: auto-cpufreq-linux-gui
path: |
auto-cpufreq/target/release/auto-cpufreq
auto-cpufreq/target/release/auto-cpufreq-gtk
auto-cpufreq/target/release/auto-cpufreq-tray
retention-days: 30
test_install:
name: Test installation script
runs-on: ubuntu-latest
needs: [build_cli]
steps:
- uses: actions/checkout@v4
- name: Install system dependencies
working-directory: .
run: |
sudo apt-get update
sudo apt-get install -y \
pkg-config \
libssl-dev \
libdbus-1-dev \
dmidecode
- name: Download CLI artifact
uses: actions/download-artifact@v4
with:
name: auto-cpufreq-linux-cli
path: auto-cpufreq/target/release/
- name: Make binary executable
run: chmod +x target/release/auto-cpufreq
- name: Test installer (dry run)
working-directory: .
run: |
if [ -f auto-cpufreq-installer ]; then
chmod +x auto-cpufreq-installer
./auto-cpufreq-installer --help || echo "Installer help not available"
else
echo "auto-cpufreq-installer not found, skipping"
fi
- name: Install and verify binary
run: |
sudo cp target/release/auto-cpufreq /usr/local/bin/
auto-cpufreq --version || echo "Version check failed"
auto-cpufreq --help
test_distros:
name: Test on ${{ matrix.distro }}
runs-on: ubuntu-latest
needs: [build_cli]
strategy:
matrix:
distro:
- ubuntu:22.04
- ubuntu:24.04
- debian:12
- fedora:39
- archlinux:latest
container:
image: ${{ matrix.distro }}
steps:
- uses: actions/checkout@v4
- name: Install dependencies (Debian/Ubuntu)
if: startsWith(matrix.distro, 'ubuntu') || startsWith(matrix.distro, 'debian')
working-directory: .
run: apt-get update && apt-get install -y curl gcc pkg-config libssl-dev libdbus-1-dev dmidecode
- name: Install dependencies (Fedora)
if: startsWith(matrix.distro, 'fedora')
working-directory: .
run: dnf install -y curl gcc openssl-devel dbus-devel dmidecode pkgconfig
- name: Install dependencies (Arch)
if: startsWith(matrix.distro, 'archlinux')
working-directory: .
run: pacman -Sy --noconfirm curl gcc openssl dbus dmidecode pkg-config
- name: Install Rust
working-directory: .
run: |
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
. $HOME/.cargo/env
rustc --version
- name: Build
run: |
. $HOME/.cargo/env
cargo build --release
- name: Basic smoke test
run: |
./target/release/auto-cpufreq --version || true
./target/release/auto-cpufreq --help || true
security_audit:
name: Security audit
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
- name: Install cargo-audit
working-directory: .
run: cargo install cargo-audit
- name: Run security audit
run: cargo audit
continue-on-error: true
coverage:
name: Code coverage
runs-on: ubuntu-latest
needs: [build_cli]
steps:
- uses: actions/checkout@v4
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
with:
components: llvm-tools-preview
- name: Install dependencies
working-directory: .
run: |
sudo apt-get update
sudo apt-get install -y \
pkg-config \
libssl-dev \
libdbus-1-dev \
dmidecode \
libgtk-4-dev \
libappindicator3-dev \
gir1.2-appindicator3-0.1 \
libglib2.0-dev \
libcairo2-dev \
libpango1.0-dev \
libgdk-pixbuf2.0-dev \
gobject-introspection \
libgirepository1.0-dev
- name: Install cargo-llvm-cov
working-directory: .
run: cargo install cargo-llvm-cov
- name: Generate coverage
run: cargo llvm-cov --all-features --workspace --lcov --output-path lcov.info
continue-on-error: true
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
files: auto-cpufreq/lcov.info
fail_ci_if_error: false
continue-on-error: true
create_artifacts:
name: Create release artifacts
runs-on: ubuntu-latest
needs: [build_cli, build_gui, test_install]
if: startsWith(github.ref, 'refs/tags/')
steps:
- uses: actions/checkout@v4
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
- name: Install dependencies
working-directory: .
run: |
sudo apt-get update
sudo apt-get install -y \
pkg-config \
libssl-dev \
libdbus-1-dev \
dmidecode \
libgtk-4-dev \
libappindicator3-dev \
gir1.2-appindicator3-0.1 \
libglib2.0-dev \
libcairo2-dev \
libpango1.0-dev \
libgdk-pixbuf2.0-dev \
gobject-introspection \
libgirepository1.0-dev
- name: Build CLI binary
run: cargo build --release
- name: Build GUI binary
run: cargo build --release --features gui
- name: List built binaries
run: ls -lh target/release/auto-cpufreq*
- name: Package CLI binary
run: cp target/release/auto-cpufreq auto-cpufreq-linux-x86_64
- name: Package GUI tarball
run: |
cd ..
GUI_FILES="auto-cpufreq/target/release/auto-cpufreq"
[ -f auto-cpufreq/target/release/auto-cpufreq-gtk ] && GUI_FILES="$GUI_FILES auto-cpufreq/target/release/auto-cpufreq-gtk"
[ -f auto-cpufreq/target/release/auto-cpufreq-tray ] && GUI_FILES="$GUI_FILES auto-cpufreq/target/release/auto-cpufreq-tray"
tar czf auto-cpufreq/auto-cpufreq-linux-x86_64-gui.tar.gz \
$GUI_FILES \
scripts/ \
images/ \
README.md \
LICENSE
- name: Generate checksums
run: |
sha256sum auto-cpufreq-linux-x86_64 > checksums.txt
sha256sum auto-cpufreq-linux-x86_64-gui.tar.gz >> checksums.txt
cat checksums.txt
- name: Publish GitHub Release
uses: softprops/action-gh-release@v2
with:
files: |
auto-cpufreq/auto-cpufreq-linux-x86_64
auto-cpufreq/auto-cpufreq-linux-x86_64-gui.tar.gz
auto-cpufreq/checksums.txt
generate_release_notes: true