-
Notifications
You must be signed in to change notification settings - Fork 8
114 lines (95 loc) · 3.45 KB
/
latest-dependencies.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
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow
name: latest-dependencies
permissions:
contents: read
on:
pull_request:
push:
branches:
- main
schedule:
# Weekly, i.e. on Monday at 03:20 UTC
- cron: "20 3 * * 1"
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
env:
CARGO_INCREMENTAL: 0
CARGO_TERM_COLOR: always
RUST_BACKTRACE: short
jobs:
run:
strategy:
fail-fast: false # don't give up on the whole matrix if one variant fails
matrix:
# Keep list of targets in sync with `test.yaml`.
include:
- target: aarch64-apple-darwin
runner_os: macos-latest
- target: armv7-unknown-linux-gnueabihf
runner_os: ubuntu-latest
- target: x86_64-apple-darwin
runner_os: macos-latest
- target: x86_64-pc-windows-msvc
runner_os: windows-latest
- target: x86_64-unknown-linux-gnu
runner_os: ubuntu-latest
- target: x86_64-unknown-linux-musl
runner_os: ubuntu-latest
runs-on: ${{ matrix.runner_os }}
steps:
- name: Adjust build settings for Windows
if: contains(matrix.target, '-windows-')
# Required for Windows builds: for version numbers with pre-release part
# as suffix, the resulting paths would get too long to build otherwise.
run: >-
echo "CARGO_TARGET_DIR=D:\t" >> $env:GITHUB_ENV
- name: Install Rust toolchain
# Use latest stable Rust version.
uses: dtolnay/rust-toolchain@stable
- name: Install cross-compilation tools
uses: taiki-e/setup-cross-toolchain-action@v1
with:
target: ${{ matrix.target }}
- name: Install Cargo helpers
run: >-
cargo install cargo-hack
# Check out the repository before the remaining steps that depend on it.
# All preceding steps are independent of the repository contents.
- name: Check out repository
uses: actions/checkout@v4
with:
submodules: recursive
- name: Cache Rust toolchain and build artifacts
uses: Swatinem/rust-cache@v2
with:
# The cache should not be shared between different workflows, jobs, and targets.
shared-key: ${{ github.workflow }}-${{ github.job }}-${{ matrix.target }}
- name: Update Rust to latest version
run: >-
rustup update
- name: Update crates to latest versions
run: >-
cargo update --verbose
- name: Build with feature combinations
run: >-
cargo hack --each-feature build --locked
- name: Run tests (bins/lib/tests/examples) with feature combinations
run: >-
cargo hack --each-feature test --locked
--bins --lib --tests --examples
# Compile and run doctests, which have been excluded in the previous
# step(s).
#
# Doctests may use any features and there is no easy way to activate
# certain features only for some doctests, so we run them without
# `cargo-hack`.
- name: Run doctests with all features enabled
run: >-
cargo test --locked --all-features
--doc
- name: Build package with all features enabled
# We allow dirty state here because it is only expected after update.
run: >-
cargo package --locked --all-features --allow-dirty