-
Notifications
You must be signed in to change notification settings - Fork 0
34 lines (33 loc) · 1.03 KB
/
release.yaml
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
name: build release
on: [push]
jobs:
build-release:
strategy:
matrix:
include:
- os: ubuntu-latest
bin: esdump-rs
target: x86_64-unknown-linux-gnu
- os: macOS-latest
bin: esdump-rs
target: aarch64-apple-darwin
- os: windows-latest
bin: esdump-rs.exe
target: x86_64-pc-windows-msvc
name: cargo build
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
with:
key: "release-lto"
- run: cargo build --target=${{ matrix.target }} --profile=release-lto
- run: mkdir ${{ matrix.target }}
- run: cp target/${{ matrix.target }}/release-lto/${{ matrix.bin }} ${{ matrix.target }}/${{ matrix.bin }}
- name: Upload build artifacts
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.platform }}
path: ${{ matrix.target }}
retention-days: 1