-
Notifications
You must be signed in to change notification settings - Fork 32
71 lines (65 loc) · 2.27 KB
/
macos.yml
File metadata and controls
71 lines (65 loc) · 2.27 KB
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
name: CI - macOS - aarch64
on:
push:
branches:
- master
- feature-*
- issue-*
pull_request:
jobs:
build_and_test:
strategy:
fail-fast: false
matrix:
version:
- 1.82.0 # MSRV
- stable
- nightly
name: Test ${{ matrix.version }} - aarch64-apple-darwin
runs-on: macOS-latest
steps:
- name: Install Dependencies
run: |
brew install pkgconfig
brew install libarchive libb2 lz4 zstd xz bzip2 zlib libxml2
# Collect pkg-config dirs for keg-only formulae plus libarchive.
PKG_CONFIG_PATHS=""
for formula in libarchive bzip2 zlib libxml2; do
pcdir="$(brew --prefix "$formula")/lib/pkgconfig"
if [ -d "$pcdir" ]; then
PKG_CONFIG_PATHS="${PKG_CONFIG_PATHS:+$PKG_CONFIG_PATHS:}$pcdir"
fi
done
echo "PKG_CONFIG_PATH=$PKG_CONFIG_PATHS" >> "$GITHUB_ENV"
- name: Checkout sources
uses: actions/checkout@v6
- name: Install stable toolchain (MSRV-aware lockfile resolution)
uses: dtolnay/rust-toolchain@stable
- name: Generate Cargo.lock
run: cargo generate-lockfile
env:
CARGO_RESOLVER_INCOMPATIBLE_RUST_VERSIONS: fallback
- name: Install ${{ matrix.version }}
uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.version }}
- name: Cache cargo registry
uses: actions/cache@v5
with:
path: ~/.cargo/registry
key: ${{ matrix.version }}-aarch64-apple-darwin-cargo-registry-trimmed-${{ hashFiles('**/Cargo.lock') }}
- name: Cache cargo index
uses: actions/cache@v5
with:
path: ~/.cargo/git
key: ${{ matrix.version }}-aarch64-apple-darwin-cargo-index-trimmed-${{ hashFiles('**/Cargo.lock') }}
- name: Cache cargo build
uses: actions/cache@v5
with:
path: target
key: ${{ matrix.version }}-aarch64-apple-darwin-cargo-build-trimmed-${{ hashFiles('**/Cargo.lock') }}
- name: Check build
run: cargo check --release --all --bins --examples --tests
- name: Tests
timeout-minutes: 10
run: cargo test --release --all --all-features --no-fail-fast -- --nocapture