-
Notifications
You must be signed in to change notification settings - Fork 4
62 lines (58 loc) · 1.87 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
name: Release
permissions:
contents: write
on:
push:
tags:
- v[0-9]+.*
- test-release.*
jobs:
create-release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: taiki-e/create-gh-release-action@v1
with:
changelog: CHANGELOG.md
draft: true
# (required) GitHub token for creating GitHub Releases.
token: ${{ secrets.GITHUB_TOKEN }}
upload-assets:
strategy:
matrix:
include:
- os: ubuntu-22.04
target: x86_64-unknown-linux-gnu
no-default-features: false
- os: ubuntu-22.04
target: aarch64-unknown-linux-gnu
no-default-features: false
- os: ubuntu-22.04
target: riscv64gc-unknown-linux-gnu
no-default-features: true
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- uses: Swatinem/rust-cache@v2
with:
prefix-key: ${{ matrix.os }}-${{ matrix.target }}-rust
cache-targets: true
cache-on-failure: false
- name: Install native dependencies
if: runner.os == 'Linux'
run: sudo apt update -y && sudo apt install -y binutils-aarch64-linux-gnu gcc-aarch64-linux-gnu binutils-riscv64-linux-gnu gcc-riscv64-linux-gnu
- name: Publish to crates.io
if: matrix.os == 'ubuntu-22.04' && matrix.target == 'x86_64-unknown-linux-gnu'
continue-on-error: true
uses: katyo/publish-crates@v2
with:
registry-token: ${{ secrets.CARGO_REGISTRY_TOKEN }}
- uses: taiki-e/upload-rust-binary-action@v1
with:
bin: tracexec
token: ${{ secrets.GITHUB_TOKEN }}
target: ${{ matrix.target }}
no-default-features: ${{ matrix.no-default-features }}