-
Notifications
You must be signed in to change notification settings - Fork 0
74 lines (70 loc) · 2.31 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
on:
push:
tags:
- v*
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v2
- name: Install linux libs
run: sudo apt-get update; sudo apt-get install pkg-config build-essential gcc-multilib libudev-dev libjack-jackd2-dev libjack-jackd2-0 libasound2-dev alsa
- name: Install stable toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- run: cargo fmt --all -- --check
- run: cargo clippy --all-targets -- -D clippy::all
release:
if: startsWith(github.ref, 'refs/tags/v')
name: Build and Release
strategy:
fail-fast: false
matrix:
target:
- x86_64-apple-darwin
- x86_64-pc-windows-msvc
- x86_64-unknown-linux-gnu
include:
- target: x86_64-unknown-linux-gnu
os: ubuntu-latest
name: usfx_test-linux.tar.gz
- target: x86_64-apple-darwin
os: macOS-latest
name: usfx_test-mac.tar.gz
- target: x86_64-pc-windows-msvc
os: windows-latest
name: usfx_test-windows.zip
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Install linux dependencies
if: matrix.os == 'ubuntu-latest'
run: sudo apt-get update; sudo apt-get install pkg-config build-essential gcc-multilib libudev-dev libjack-jackd2-dev libjack-jackd2-0 libasound2-dev alsa
- uses: actions-rs/cargo@v1
with:
command: build
toolchain: stable
args: --release --target=${{ matrix.target }}
- name: Prepare build artifacts [Windows]
if: matrix.os == 'windows-latest'
run: |
cd target/${{ matrix.target }}/release
strip usfx_test.exe
7z a ../../../${{ matrix.name }} usfx_test.exe
cd -
- name: Prepare build artifacts [-nix]
if: matrix.os != 'windows-latest'
run: |
cd target/${{ matrix.target }}/release
strip usfx_test
tar cvf ../../../${{ matrix.name }} usfx_test
cd -
- uses: softprops/action-gh-release@v1
with:
files: ${{ matrix.name }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}