-
-
Notifications
You must be signed in to change notification settings - Fork 0
47 lines (41 loc) · 1.26 KB
/
build.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
name: build
on: [push, pull_request]
jobs:
build:
name: build
runs-on: ${{ matrix.os }}
strategy:
matrix:
build: [linux]
include:
- build: linux
os: ubuntu-20.04
rust: stable
target: x86_64-unknown-linux-musl
archive-name: processforlinux-linux.tar.gz
fail-fast: false
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Rust
uses: docker://clux/muslrust:stable
with:
args: cargo install cargo-strip
- name: Build binary
run: sudo apt install libdbus-1-dev pkg-config && cargo build --verbose --release
- name: Strip binary
if: matrix.build == 'linux'
run: pwd && strip "target/release/processforlinux"
- name: Build archive
shell: bash
run: |
mkdir archive
cp LICENSE README.md archive/
cd archive
cp "../target/release/processforlinux" ./
tar -czf "${{ matrix.archive-name }}" LICENSE README.md processforlinux
- name: Upload archive
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.archive-name }}
path: archive/${{ matrix.archive-name }}