-
Notifications
You must be signed in to change notification settings - Fork 6
142 lines (133 loc) · 4 KB
/
build.yaml
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
name: ci
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on:
pull_request:
push:
branches:
- main
jobs:
test:
name: test
env:
CARGO: cargo
# When CARGO is set to CROSS, this is set to `--target matrix.target`.
TARGET_FLAGS:
# When CARGO is set to CROSS, TARGET_DIR includes matrix.target.
TARGET_DIR: ./target
# Emit backtraces on panics.
RUST_BACKTRACE: 1
runs-on: ${{ matrix.os }}
strategy:
matrix:
build:
# We test ironhide on a pinned version of Rust, along with the moving
# targets of 'stable' and 'beta' for good measure.
# We release off our pinned version, so we test all of those as well
- pinned
- pinned-musl
- pinned-32
- pinned-arm
- pinned-arm64
- stable
- beta
- nightly
- macos-intel
- macos-arm64
- win-msvc
- win-gnu
include:
- build: pinned
os: ubuntu-22.04
- build: pinned-musl
os: ubuntu-22.04
target: x86_64-unknown-linux-musl
- build: pinned-32
os: ubuntu-22.04
target: i686-unknown-linux-gnu
- build: pinned-arm
os: ubuntu-22.04
target: arm-unknown-linux-gnueabihf
- build: pinned-arm64
os: buildjet-4vcpu-ubuntu-2204-arm
- build: stable
os: ubuntu-22.04
rust: stable
- build: beta
os: ubuntu-22.04
rust: beta
- build: nightly
os: ubuntu-22.04
rust: nightly
- build: macos-intel
os: macos-13
target: x86_64-apple-darwin
- build: macos-arm64
os: macos-14
target: aarch64-apple-darwin
- build: win-msvc
os: windows-2022
- build: win-gnu
os: windows-2022
steps:
- name: Checkout repository
uses: actions/checkout@v4
# this will always install whatever is targeted by the rust-toolchain.toml file
- name: Install Rust
uses: dtolnay/rust-toolchain@master
with:
toolchain: stable
# if we're on windows building with gnu we need to do something special
- name: Install win-gnu toolchain
if: matrix.build == 'win-gnu'
shell: bash
run: |
rustup override set $(cat ./rust-toolchain.toml | grep channel | sed 's/channel = "//' | sed 's/"//')-x86_64-gnu
# if we're not using the rust channel defined by the rust-toolchain.toml file, install the changed as current
- name: Install alternate rust toolchain
if: matrix.rust != ''
run: |
rustup override set ${{ matrix.rust }}
- name: Use Cross
if: matrix.target != ''
run: |
cargo install cross
echo "CARGO=cross" >> $GITHUB_ENV
echo "TARGET_FLAGS=--target ${{ matrix.target }}" >> $GITHUB_ENV
echo "TARGET_DIR=./target/${{ matrix.target }}" >> $GITHUB_ENV
- name: Show command used for Cargo
run: |
echo "cargo command is: ${{ env.CARGO }}"
echo "target flag is: ${{ env.TARGET_FLAGS }}"
- name: Build ironhide
run: ${{ env.CARGO }} build --verbose --workspace ${{ env.TARGET_FLAGS }}
- name: Run tests
run: ${{ env.CARGO }} test --verbose --workspace ${{ env.TARGET_FLAGS }}
rustfmt:
name: rustfmt
runs-on: ubuntu-22.04
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Rust
uses: dtolnay/rust-toolchain@master
with:
toolchain: stable
components: rustfmt
- name: Check formatting
run: cargo fmt --all --check
docs:
name: Docs
runs-on: ubuntu-22.04
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Rust
uses: dtolnay/rust-toolchain@master
with:
toolchain: stable
- name: Check documentation
env:
RUSTDOCFLAGS: -D warnings
run: cargo doc --no-deps --document-private-items --workspace