-
Notifications
You must be signed in to change notification settings - Fork 60
110 lines (104 loc) · 3.44 KB
/
rust.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
109
110
name: Rust
on:
push:
branches:
- main
pull_request:
env:
CARGO_TERM_COLOR: always
jobs:
format:
name: format
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- 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@v4
- 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@v4
- 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@v4
- 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