-
-
Notifications
You must be signed in to change notification settings - Fork 2
90 lines (72 loc) · 2.54 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
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
# Build on push and pull request.
# create a draft release with built binaries and changelog, when a tag like "v0.1.0" is pushed.
name: Build
on: [push, pull_request, workflow_dispatch]
env:
CARGO_TERM_COLOR: always
jobs:
create-draft-release:
runs-on: ubuntu-latest
outputs:
release_upload_url: ${{ steps.create-draft-release.outputs.upload_url }}
steps:
- name: Create draft release
id: create-draft-release
uses: ncipollo/release-action@v1
if: github.ref_type == 'tag' && startsWith(github.ref_name, 'v')
with:
draft: true
generateReleaseNotes: true
build-and-upload-artifact:
needs: create-draft-release
runs-on: ${{ matrix.os }}
strategy:
matrix:
include:
- os: ubuntu-latest
target: x86_64-unknown-linux-gnu
artifact-name: ubuntu-x86_64-gnu
prebuild-config: |
sudo apt-get update
sudo apt-get install -y libasound2-dev
- os: windows-latest
target: x86_64-pc-windows-msvc
artifact-name: windows-x86_64-msvc
- os: macos-latest
target: x86_64-apple-darwin
artifact-name: macos-x86_64
steps:
- uses: actions/checkout@v3
- name: Set exe extension for Windows
run: echo "EXE=.exe" >> $env:GITHUB_ENV
if: startsWith(matrix.os, 'windows')
- name: Install `rust` toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
profile: minimal
target: ${{ matrix.target }}
- name: Prebuild config
run: ${{ matrix.prebuild-config }}
- name: Build
run: cargo build --release --target=${{ matrix.target }}
- name: Run tests
run: cargo test --release
- name: Upload artifact
uses: actions/upload-artifact@v3
with:
name: ${{ matrix.artifact-name }}
path: target/${{ matrix.target }}/release/mfp${{ env.EXE }}
- name: Get version from tag
id: extract-version
run: |
echo "version=${GITHUB_REF_NAME#v}" >> $GITHUB_OUTPUT
shell: bash
- name: Upload artifact to release
uses: shogo82148/actions-upload-release-asset@v1
if: github.ref_type == 'tag' && startsWith(github.ref_name, 'v')
with:
upload_url: ${{ needs.create-draft-release.outputs.release_upload_url }}
asset_name: mfp-${{ steps.extract-version.outputs.version }}-${{ matrix.artifact-name }}${{ env.EXE }}
asset_path: target/${{ matrix.target }}/release/mfp${{ env.EXE }}