-
Notifications
You must be signed in to change notification settings - Fork 217
61 lines (50 loc) · 1.65 KB
/
native-cargo.yaml
File metadata and controls
61 lines (50 loc) · 1.65 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
---
name: Cargo Native
on:
push:
branches: [main]
paths-ignore:
- '.github/styles/**'
- 'web/**'
pull_request:
branches: [main]
paths-ignore:
- '.github/styles/**'
- 'web/**'
permissions: read-all
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
env:
RUSTFLAGS: -Dwarnings
jobs:
cargo-native:
strategy:
fail-fast: false
matrix:
os: [ubuntu-24.04, windows-2022]
toolchain: [stable]
name: ${{ matrix.os }} / ${{ matrix.toolchain }}
runs-on: ${{ matrix.os }}
timeout-minutes: 30
steps:
- name: Checkout
uses: >- # v6.0.2
actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
# Ubuntu 24.04 restricts unprivileged user namespaces by default, which breaks
# the worker tests that use namespaces (e.g. for sandboxing).
- name: Disable AppArmor namespace restrictions
run: sudo sysctl -w kernel.apparmor_restrict_unprivileged_userns=0
if: matrix.os == 'ubuntu-24.04'
- name: Set up Rust toolchain
run: rustup update && rustup default ${{ matrix.toolchain }}
shell: bash
- name: Rust cache
# https://github.com/Swatinem/rust-cache/releases/tag/v2.9.1
uses: Swatinem/rust-cache@c19371144df3bb44fab255c43d04cbc2ab54d1c4
- name: Build on ${{ runner.os }}
run: cargo build --all --profile=smol
- name: Test on ${{ runner.os }}
run: cargo test --all --profile=smol
- name: Check schema export
run: cargo run --bin build-schema --features dev-schema --package nativelink-config