-
Notifications
You must be signed in to change notification settings - Fork 2
99 lines (80 loc) · 2.27 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
90
91
92
93
94
95
96
97
98
99
name: Release
on:
push:
branches:
- main
tags: ['v*']
jobs:
build:
runs-on: ubuntu-22.04
strategy:
fail-fast: true
matrix:
target:
- x86_64-unknown-linux-musl
steps:
- uses: actions/checkout@v4.1.1
- name: install apt depenedencies
run: |
sudo apt-get update
sudo apt-get install -y musl-tools
- name: Install Protoc
uses: arduino/setup-protoc@v1
with:
version: '3.x'
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: Get Rust toolchain
id: toolchain
working-directory: .
run: |
awk -F'[ ="]+' '$1 == "channel" { print "toolchain=" $2 }' rust-toolchain >> "$GITHUB_OUTPUT"
- uses: dtolnay/rust-toolchain@v1
with:
toolchain: ${{ steps.toolchain.outputs.toolchain }}
targets: ${{ matrix.target }}
- uses: Swatinem/rust-cache@v2.7.3
- name: install cargo-about
run: |
cargo install --locked cargo-about
- name: Install wasm-pack
run: |
cargo install --locked wasm-pack
- name: Build
run: |
cargo build --target=${{ matrix.target }} --release --locked
- name: Rename binaries
run: |
mkdir bin
gaia_bins=("tmtc-c2a")
for b in "${gaia_bins[@]}" ; do
cp "./target/${{ matrix.target }}/release/${b}" "./bin/${b}-${{ matrix.target }}"
done
ls -lh ./bin
- uses: actions/upload-artifact@v4.3.1
with:
name: release-executable-${{ matrix.target }}
if-no-files-found: error
path: ./bin/
release:
name: Release
needs: [ build ]
permissions:
contents: write
runs-on: ubuntu-22.04
steps:
- uses: actions/download-artifact@v4.1.3
with:
pattern: release-executable-*
merge-multiple: true
- run: |
chmod +x tmtc-c2a*
- run: ls -lh
- name: Release to GitHub Release
if: startsWith(github.ref, 'refs/tags/')
uses: softprops/action-gh-release@v2.0.3
with:
draft: true
fail_on_unmatched_files: true
generate_release_notes: true
files: |
tmtc-c2a*