forked from mstange/samply
-
Notifications
You must be signed in to change notification settings - Fork 0
169 lines (143 loc) · 4.82 KB
/
rust.yml
File metadata and controls
169 lines (143 loc) · 4.82 KB
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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
name: Rust
on:
push:
branches:
- main
pull_request:
env:
CARGO_TERM_COLOR: always
RUSTC_WRAPPER: sccache
SCCACHE_GHA_ENABLED: true
SCCACHE_CACHE_SIZE: 2G
jobs:
format:
name: format
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- run: rustup update stable
- name: Check formatting
run: cargo fmt --all --check --verbose
build:
name: build & test
strategy:
matrix:
target:
- x86_64-unknown-linux-gnu
- x86_64-unknown-linux-musl
- aarch64-apple-darwin
- x86_64-apple-darwin
- x86_64-pc-windows-msvc
include:
- target: x86_64-unknown-linux-gnu
os: ubuntu-latest
- target: x86_64-unknown-linux-musl
os: ubuntu-latest
is_musl: true
- target: x86_64-apple-darwin
os: macos-latest
- target: aarch64-apple-darwin
os: macos-latest
- target: x86_64-pc-windows-msvc
os: windows-latest
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Install sccache
uses: mozilla-actions/sccache-action@v0.0.10
- name: Cache Cargo dependencies
uses: actions/cache@v5
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
restore-keys: |
${{ runner.os }}-cargo-
- name: Install Rust
run: rustup target add ${{ matrix.target }}
- if: ${{ matrix.is_musl }}
name: Install musl-tools
run: sudo apt-get install -y musl-tools
- name: Check samply-api with default features
run: cargo check -p samply-api --verbose --target=${{ matrix.target }}
- name: Build
run: cargo build --workspace --verbose --target=${{ matrix.target }}
- name: Test
run: cargo test --workspace --verbose --target=${{ matrix.target }}
- name: Clippy
run: cargo clippy --workspace --verbose --target=${{ matrix.target }} -- -Dwarnings
cross-compile:
name: cross
strategy:
matrix:
target:
- aarch64-unknown-linux-gnu
- aarch64-linux-android
include:
- target: aarch64-unknown-linux-gnu
os: ubuntu-latest
- target: aarch64-linux-android
os: ubuntu-latest
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Install sccache
uses: mozilla-actions/sccache-action@v0.0.10
- name: Cache Cargo dependencies
uses: actions/cache@v5
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-cross-cargo-${{ hashFiles('**/Cargo.lock') }}
restore-keys: |
${{ runner.os }}-cross-cargo-
- name: Install Rust
run: rustup update stable && rustup default stable && rustup target add ${{ matrix.target }}
- name: Install cross
# Latest cross release 0.2.5 fails to link binaries for the `aarch64-linux-android` target. A release is pending.
# Use a specific commit until the release is out. See https://github.com/cross-rs/cross/issues/1222
run: cargo install --git https://github.com/cross-rs/cross.git --rev 44011c8 cross
- name: Build
run: cross build --workspace --verbose --target=${{ matrix.target }}
- name: Test
run: cross test --workspace --verbose --target=${{ matrix.target }}
- name: Clippy
run: cross clippy --workspace --verbose --target=${{ matrix.target }} -- -Dwarnings
aarch64-win:
name: windows aarch64
strategy:
matrix:
target:
- aarch64-pc-windows-msvc
include:
- target: aarch64-pc-windows-msvc
os: windows-latest
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Install sccache
uses: mozilla-actions/sccache-action@v0.0.10
- name: Cache Cargo dependencies
uses: actions/cache@v5
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-win-cargo-${{ hashFiles('**/Cargo.lock') }}
restore-keys: |
${{ runner.os }}-win-cargo-
- name: Install Rust
run: rustup target add ${{ matrix.target }}
- name: Check
run: cargo check --workspace --verbose --target=${{ matrix.target }}
- name: Clippy
run: cargo clippy --workspace --verbose --target=${{ matrix.target }} -- -Dwarnings