-
Notifications
You must be signed in to change notification settings - Fork 122
82 lines (66 loc) · 2.38 KB
/
build-and-test.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
# SPDX-FileCopyrightText: Copyright (c) 2017-2024 slowtec GmbH <post@slowtec.de>
# SPDX-License-Identifier: CC0-1.0
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow
name: build-and-test
permissions:
contents: read
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:
env:
CARGO_TERM_COLOR: always
jobs:
run:
strategy:
matrix:
include:
- target: aarch64-apple-darwin
runner_os: macos-latest
# Runner (x86-64) and target are not compatible.
run_tests: false
- target: x86_64-pc-windows-msvc
runner_os: windows-latest
run_tests: true
- target: x86_64-unknown-linux-musl
runner_os: ubuntu-latest
run_tests: true
runs-on: ${{ matrix.runner_os }}
steps:
- name: Install dependencies for musl libc
if: matrix.target == 'x86_64-unknown-linux-musl'
run: >-
sudo apt update &&
sudo apt -y install
musl-tools
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
with:
targets: ${{ matrix.target }}
- name: Checkout code
uses: actions/checkout@v4
- name: Generate Cargo.lock
run: cargo generate-lockfile
- name: Cache Rust toolchain and build artifacts
uses: Swatinem/rust-cache@v2
with:
# The cache should not be shared between different workflows and jobs.
# Two jobs might share the same default target but have different build targets.
shared-key: ${{ github.workflow }}-${{ github.job }}-${{ matrix.target }}
- name: Build tests with all features enabled
run: >-
cargo test --workspace --locked --target ${{ matrix.target }} --all-features --all-targets
--no-run
- name: Run tests with all features enabled
if: matrix.run_tests
run: >-
cargo test --workspace --locked --target ${{ matrix.target }} --all-features --all-targets
-- --nocapture --quiet
- name: Build workspace documentation with all features enabled
run: cargo doc --workspace --locked --target ${{ matrix.target }} --all-features
- name: Build release with default features
run: cargo build --locked --target ${{ matrix.target }} --all-targets --profile release