-
-
Notifications
You must be signed in to change notification settings - Fork 8
70 lines (67 loc) · 2.04 KB
/
build.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
name: Build
on:
push:
branches:
- master
- develop
- 'v[0-9]+.[0-9]+'
pull_request:
branches:
- master
- develop
- 'v[0-9]+.[0-9]+'
env:
CARGO_TERM_COLOR: always
jobs:
default:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: cachix/install-nix-action@v26
- run: nix develop ".#stable" -c cargo check --workspace
no-default:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: cachix/install-nix-action@v26
- run: nix develop ".#stable" -c cargo check --workspace --no-default-features
features:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
feature:
- float
- derive
- serde
steps:
- uses: actions/checkout@v4
- name: Install Nix
uses: cachix/install-nix-action@v26
- name: Feature ${{matrix.feature}}
run: nix develop ".#stable" -c cargo check --no-default-features --features=${{matrix.feature}}
- name: Feature ${{matrix.feature}}
run: nix develop ".#stable" -c cargo check --features=${{matrix.feature}}
platforms:
# NOTE: Don't use nix in platform checks everything should be based on the host system
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ ubuntu-22.04, ubuntu-latest, macos-13, macos-latest, windows-2019, windows-latest ]
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- name: Check ${{matrix.os}}
run: cargo check --workspace --all-features # we skip test targets here to be sure that the main library can be built
toolchains:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
toolchain: [ nightly, beta, stable, msrv ]
steps:
- uses: actions/checkout@v4
- uses: cachix/install-nix-action@v26
- name: Check ${{matrix.toolchain}}
run: nix develop ".#${{ matrix.toolchain }}" -c cargo check --workspace --all-targets --all-features