-
Notifications
You must be signed in to change notification settings - Fork 0
36 lines (33 loc) · 1.34 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
name: Build and Upload
on:
push:
branches: [ "master" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Build static linked
run: RUSTFLAGS='-C target-feature=-crt-static' cargo build --target=x86_64-unknown-linux-gnu --release --verbose
- name: Build musl static linked
run: |
rustup target add x86_64-unknown-linux-musl
cargo build --target=x86_64-unknown-linux-musl --release --verbose
- name: Rename binaries
run: |
mv target/x86_64-unknown-linux-musl/release/rwpspread target/x86_64-unknown-linux-musl/release/rwpspread_musl
- name: Generate Checksums
run: |
sha512sum target/x86_64-unknown-linux-gnu/release/rwpspread > target/x86_64-unknown-linux-gnu/release/rwpspread.sha512sum
sha512sum target/x86_64-unknown-linux-musl/release/rwpspread_musl > target/x86_64-unknown-linux-musl/release/rwpspread_musl.sha512sum
- name: Upload GNU release files
uses: actions/upload-artifact@v3
with:
path: target/x86_64-unknown-linux-gnu/release/rwpspread*
- name: Upload musl release files
uses: actions/upload-artifact@v3
with:
path: target/x86_64-unknown-linux-musl/release/rwpspread_musl*