-
-
Notifications
You must be signed in to change notification settings - Fork 0
54 lines (54 loc) · 1.9 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
49
50
51
52
53
54
name: CoDiOS CI release builder
'on': push
env:
CARGO_TERM_COLOR: always
jobs:
create-release:
if: startsWith(github.ref, 'refs/tags/')
name: >-
Release builder for Cosmo CoDiOS
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: nightly-2024-04-11
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 (thumbv7em-none-eabihf) in release mode
uses: actions-rs/cargo@v1
with:
command: build
args: >-
--all --release --locked --verbose --features firmware --target=thumbv7em-none-eabihf
use-cross: true
- name: Strip the CoDiOS firmware
run: cargo strip --release --bin codios-firmware
- name: Package firmware
shell: bash
run: |
mv /home/runner/work/CoDiOS/CoDiOS/target/thumbv7em-none-eabihf/codios-firmware /home/runner/work/CoDiOS/CoDiOS/target/thumbv7em-none-eabihf/codios-firmware.bin
tar -czvf /home/runner/work/CoDiOS/CoDiOS-firmware-release.tgz /home/runner/work/CoDiOS/CoDiOS/target/thumbv7em-none-eabihf/codios-firmware.bin
- name: Publish release artifacts
uses: softprops/action-gh-release@v2
with:
files: /home/runner/work/CoDiOS/CoDiOS-firmware-release.tgz
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}