-
Notifications
You must be signed in to change notification settings - Fork 0
108 lines (108 loc) · 3.38 KB
/
ci.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
100
101
102
103
104
105
106
107
108
name: Build
on: [push]
jobs:
arm-bemos-linux-musleabihf:
runs-on: ubuntu-latest
container: ghcr.io/bestsens/musl-build-image:latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup cache
uses: actions/cache@v4
continue-on-error: false
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
restore-keys: ${{ runner.os }}-cargo-
- name: Setup
run: |
rustup default stable
rustup target add armv7-unknown-linux-musleabihf
- name: Build
env:
CC: arm-bemos-linux-musleabihf-gcc
run: |
cargo build --release --target=armv7-unknown-linux-musleabihf
- name: Clean up hierachy
run: cp LICENSE target/armv7-unknown-linux-musleabihf/release/LICENSE
- name: Archive artifacts
uses: actions/upload-artifact@v4
with:
name: armv7
path: |
target/armv7-unknown-linux-musleabihf/release/bone_shell
target/armv7-unknown-linux-musleabihf/release/LICENSE
x86_64-linux-gnu:
runs-on: ubuntu-latest
container: ghcr.io/bestsens/rust-build-image:latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup cache
uses: actions/cache@v4
continue-on-error: false
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
restore-keys: ${{ runner.os }}-cargo-
- name: Setup
run: |
apt-get update
apt-get install -y cmake
- name: Build
run: |
cargo build --release
- name: Clean up hierachy
run: cp LICENSE target/release/LICENSE
- name: Archive artifacts
uses: actions/upload-artifact@v4
with:
name: x86_64
path: |
target/release/bone_shell
target/release/LICENSE
x86_64-pc-windows-gnu:
runs-on: ubuntu-latest
container: ghcr.io/bestsens/rust-build-image:latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup cache
uses: actions/cache@v4
continue-on-error: false
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
restore-keys: ${{ runner.os }}-cargo-
- name: Setup
run: |
apt-get update
apt-get install -y mingw-w64 cmake
rustup target add x86_64-pc-windows-gnu
- name: Build
run: |
cargo build --release --target=x86_64-pc-windows-gnu
- name: Clean up hierachy
run: cp LICENSE target/x86_64-pc-windows-gnu/release/LICENSE
- name: Archive artifacts
uses: actions/upload-artifact@v4
with:
name: x84_64-windows
path: |
target/x86_64-pc-windows-gnu/release/bemos_s3uploader.exe
target/x86_64-pc-windows-gnu/release/LICENSE