-
-
Notifications
You must be signed in to change notification settings - Fork 72
72 lines (64 loc) · 1.74 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
name: Build
on:
push:
branches: [master]
jobs:
build:
strategy:
matrix:
target:
- x86_64-unknown-linux-gnu
- x86_64-pc-windows-msvc
- x86_64-apple-darwin
- aarch64-apple-darwin
include:
- target: x86_64-unknown-linux-gnu
os: ubuntu-latest
- target: x86_64-pc-windows-msvc
os: windows-latest
ext: .exe
- target: x86_64-apple-darwin
os: macos-latest
- target: aarch64-apple-darwin
os: macos-latest
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
target: ${{ matrix.target }}
profile: minimal
- uses: Swatinem/rust-cache@v1
with:
key: ${{ matrix.target }}
- name: Build
uses: actions-rs/cargo@v1
with:
command: build
args: --release --target ${{ matrix.target }}
- name: Upload
uses: actions/upload-artifact@v2
with:
name: mchprs-${{ matrix.target }}
path: target/${{ matrix.target }}/release/mchprs${{ matrix.ext }}
build-macos-universal:
needs: build
runs-on: macos-latest
steps:
- uses: actions/download-artifact@v3
with:
name: mchprs-x86_64-apple-darwin
path: x86_64
- uses: actions/download-artifact@v3
with:
name: mchprs-aarch64-apple-darwin
path: aarch64
- name: Build
run: lipo -create -output mchprs x86_64/mchprs aarch64/mchprs
- name: Upload
uses: actions/upload-artifact@v2
with:
name: mchprs-universal-apple-darwin
path: mchprs