-
-
Notifications
You must be signed in to change notification settings - Fork 76
112 lines (99 loc) · 3.02 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
name: Build
on:
push:
branches: [ "master" ]
tags: [ "v*" ]
pull_request:
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@v4
- uses: dtolnay/rust-toolchain@stable
with:
targets: ${{ matrix.target }}
- uses: Swatinem/rust-cache@v2
with:
key: ${{ matrix.target }}
- name: Build
env:
CARGO_TARGET_X86_64_PC_WINDOWS_MSVC_LINKER: rust-lld.exe
run: cargo build --release --target ${{ matrix.target }}
- name: Upload artifact
uses: actions/upload-artifact@v4
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@v4
with:
name: mchprs-x86_64-apple-darwin
path: x86_64
- uses: actions/download-artifact@v4
with:
name: mchprs-aarch64-apple-darwin
path: aarch64
- name: Create universal binary
run: lipo -create -output mchprs x86_64/mchprs aarch64/mchprs
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: mchprs-universal-apple-darwin
path: mchprs
publish:
needs: [build, build-macos-universal]
runs-on: ubuntu-latest
permissions:
contents: write
if: github.event_name == 'push'
steps:
- uses: actions/checkout@v3
- uses: actions/download-artifact@v4
with:
path: artifacts
- name: Reorganize artifacts
run: |
mkdir -p dist/
find artifacts/ -type f -exec bash -c 'base=$(basename $1); mv $1 dist/$(basename $(dirname $1))${base#${base%.*}}' _ {} \;
- name: Create preview release
env:
GITHUB_TOKEN: ${{ github.token }}
run: |
gh release delete preview --yes || true
gh release create preview \
--prerelease \
--title "${GITHUB_REPOSITORY} Preview Build" \
--notes "🚧 **This is a preview build of the latest commit.**" \
dist/*
- name: Create release
if: startsWith(github.ref, 'refs/tags/')
env:
GITHUB_TOKEN: ${{ github.token }}
tag: ${{ github.ref_name }}
run: |
gh release create "$tag" \
--title "${GITHUB_REPOSITORY} ${tag#v}" \
--generate-notes \
dist/*