-
Notifications
You must be signed in to change notification settings - Fork 1
84 lines (69 loc) · 2.73 KB
/
publish-libaec.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
name: Build and Package libaec C API
on:
workflow_dispatch:
jobs:
build:
strategy:
fail-fast: false
matrix:
include:
- platform: "macos-latest" # for Arm-based Macs (M1 and above)
args: "--target aarch64-apple-darwin"
build-dir: "libaec-osx-aarch64"
archive: "tar"
target: "aarch64-apple-darwin"
- platform: "macos-latest" # for Intel-based Macs
args: "--target x86_64-apple-darwin"
build-dir: "libaec-osx-x86-64"
archive: "tar"
target: "x86_64-apple-darwin"
- platform: "ubuntu-22.04" # Ubuntu 22.04 x86_64
args: ""
build-dir: "libaec-linux-x86-64"
archive: "tar"
target: "x86_64-unknown-linux-gnu"
- platform: "windows-latest" # Windows x86_64
args: "--target x86_64-pc-windows-msvc"
build-dir: "libaec-win-x86-64"
archive: "zip"
target: "x86_64-pc-windows-msvc"
runs-on: ${{ matrix.platform }}
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
submodules: "true"
- name: Install Rust stable
uses: dtolnay/rust-toolchain@stable
with:
targets: ${{ matrix.target }}
- name: Rust cache
uses: swatinem/rust-cache@v2
- name: Set up build directory
run: mkdir -p ${{ matrix.build-dir }}
- name: Build libaec
run: cargo build -p libaec --release ${{ matrix.args }}
- name: Copy files
run: |
# Copy header
cp crates/libaec/libaec.h "${{ matrix.build-dir }}/"
cp crates/libaec/binds/* "${{ matrix.build-dir }}/"
cp -f "target/release/${{ matrix.target }}/libaec.a" "${{ matrix.build-dir }}/" || :
cp -f "target/release/${{ matrix.target }}/libaec.so" "${{ matrix.build-dir }}/" || :
cp -f "target/release/${{ matrix.target }}/libaec.dylib" "${{ matrix.build-dir }}/" || :
cp -f "target/release/${{ matrix.target }}/libaec.lib" "${{ matrix.build-dir }}/" || :
cp -f "target/release/${{ matrix.target }}/libaec.dll" "${{ matrix.build-dir }}/" || :
shell: bash
- name: Create archive
run: |
if [[ "${{ matrix.archive }}" == "tar" ]]; then
tar -czvf ${{ matrix.build-dir }}.tar.gz ${{ matrix.build-dir }}
elif [[ "${{ matrix.archive }}" == "zip" ]]; then
zip -r ${{ matrix.build-dir }}.zip ${{ matrix.build-dir }}
fi
shell: bash
- name: Upload build artifact
uses: actions/upload-artifact@v4
with:
name: libaec-${{ matrix.target }}
path: ${{ matrix.build-dir }}.* # .tar.gz or .zip