-
-
Notifications
You must be signed in to change notification settings - Fork 0
48 lines (48 loc) · 1.53 KB
/
ci-releases.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
name: codi_bootload CI release builder
'on': push
env:
CARGO_TERM_COLOR: always
jobs:
create-release:
if: startsWith(github.ref, 'refs/tags/')
name: Release builder for CoDi bootloader (new)
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
default: true
components: llvm-tools-preview
override: true
target: thumbv7em-none-eabihf
profile: minimal
- name: Install cargo-cross
uses: actions-rs/[email protected]
with:
crate: cross
version: latest
use-tool-cache: true
- name: Install cargo-binutils
uses: actions-rs/[email protected]
with:
crate: cargo-binutils
version: latest
use-tool-cache: true
- name: Build project (armv7) in release mode
uses: actions-rs/cargo@v1
with:
command: build
args: >-
--all --release --locked --verbose --target=thumbv7em-none-eabihf
use-cross: true
- name: Strip the CoDi bootloader if the build is a release
run: cargo strip --release --bin codi_bootload
- name: Publish release artifacts
uses: softprops/action-gh-release@v2
with:
files: /home/runner/work/codi_bootload/target/thumbv7em-none-eabihf/release/codi_bootload
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}