-
Notifications
You must be signed in to change notification settings - Fork 1
89 lines (85 loc) · 2.74 KB
/
release.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
name: release
on:
push:
paths:
- 'matcher_py/src/**'
- 'matcher_rs/src/**'
- 'matcher_c/src/**'
- '.github/workflows/release.yml'
pull_request:
paths:
- 'matcher_py/src/**'
- 'matcher_rs/src/**'
- 'matcher_c/src/**'
- '.github/workflows/release.yml'
permissions:
contents: write
jobs:
build:
runs-on: ${{ matrix.platform.runner }}
strategy:
fail-fast: false
matrix:
platform:
- runner: ubuntu-latest
target: x86_64-unknown-linux-gnu
suffix: so
# - runner: ubuntu-latest
# target: aarch64-unknown-linux-gnu
# suffix: so
- runner: macos-12
target: x86_64-apple-darwin
suffix: dylib
- runner: macos-14
target: aarch64-apple-darwin
suffix: dylib
- runner: windows-latest
target: x86_64-pc-windows-gnu
suffix: dll
- runner: windows-latest
target: x86_64-pc-windows-msvc
suffix: dll
steps:
- uses: actions/checkout@v4
- name: Install Rust
uses: dtolnay/rust-toolchain@master
with:
toolchain: nightly
targets: ${{ matrix.platform.target }}
- name: Install dependencies
if: matrix.platform.runner == 'ubuntu-latest' && matrix.platform.target == 'aarch64-unknown-linux-gnu'
run: sudo apt-get install gcc-aarch64-linux-gnu
- name: Build
run: cargo build --release --target ${{ matrix.platform.target }}
- name: List files
run: ls ./target/${{ matrix.platform.target }}/release/
- name: Rename
shell: bash
run: |
mkdir libmatcher
mv ./target/${{ matrix.platform.target }}/release/*matcher_c.${{ matrix.platform.suffix }} libmatcher/${{ matrix.platform.target }}-libmatcher_c.${{ matrix.platform.suffix }}
mv ./target/${{ matrix.platform.target }}/release/*matcher_py.${{ matrix.platform.suffix }} libmatcher/${{ matrix.platform.target }}-libmatcher_py.${{ matrix.platform.suffix }}
- name: Upload release
uses: actions/upload-artifact@v4
with:
name: libmatcher-${{ matrix.platform.target }}
path: libmatcher
release:
name: Release
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/')
needs: [build]
steps:
- name: Download artifact
uses: actions/download-artifact@v4
with:
pattern: libmatcher-*
merge-multiple: true
path: artifact
- name: Make release
uses: softprops/action-gh-release@v2
with:
draft: true
prerelease: false
generate_release_notes: true
files: artifact/*