-
Notifications
You must be signed in to change notification settings - Fork 0
120 lines (97 loc) · 3.29 KB
/
Copy pathci.yml
File metadata and controls
120 lines (97 loc) · 3.29 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
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
115
116
117
118
119
120
name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
env:
CARGO_TERM_COLOR: always
permissions:
contents: read
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
with:
persist-credentials: false
- uses: actions/setup-python@v6
with:
python-version: "3.12"
cache: pip
cache-dependency-path: scripts/requirements-audit.txt
- name: Install API audit dependencies
run: python -m pip install --requirement scripts/requirements-audit.txt
- name: Test automation scripts
run: python -m unittest discover --start-directory scripts --pattern 'test_*.py'
- name: Lint automation scripts
run: |
python -m ruff check scripts
python -m ruff format --check scripts
- name: Audit live API command coverage
# Live API/network failures are advisory on ordinary CI runs. The
# repository-owned weekly parity PR is the strict reconciliation gate.
continue-on-error: ${{ github.event_name != 'pull_request' || github.head_ref != 'chore/weekly-api-parity' }}
run: |
python scripts/audit_api_coverage.py \
--write-markdown api-coverage-report.md
git diff --exit-code -- api-coverage-report.md
- name: Validate release manifests
run: python scripts/release_version.py
- uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt, clippy
- uses: Swatinem/rust-cache@v2
- name: Format check
run: cargo fmt --check
- name: Clippy
run: cargo clippy --all-targets --all-features -- -D warnings
- name: Test
run: cargo test --all-targets --all-features
build:
needs: check
strategy:
matrix:
include:
- os: ubuntu-latest
target: x86_64-unknown-linux-gnu
artifact: coval-linux-x64
- os: ubuntu-latest
target: aarch64-unknown-linux-gnu
artifact: coval-linux-arm64
- os: macos-latest
target: x86_64-apple-darwin
artifact: coval-macos-x64
- os: macos-latest
target: aarch64-apple-darwin
artifact: coval-macos-arm64
- os: windows-latest
target: x86_64-pc-windows-msvc
artifact: coval-windows-x64
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v6
with:
persist-credentials: false
- uses: dtolnay/rust-toolchain@stable
with:
targets: ${{ matrix.target }}
- uses: Swatinem/rust-cache@v2
with:
key: ${{ matrix.target }}
- name: Install cross-compilation tools
if: matrix.target == 'aarch64-unknown-linux-gnu'
run: |
sudo apt-get update
sudo apt-get install -y gcc-aarch64-linux-gnu
- name: Build
run: cargo build --release --target ${{ matrix.target }}
env:
CARGO_TARGET_AARCH64_UNKNOWN_LINUX_GNU_LINKER: aarch64-linux-gnu-gcc
- name: Upload artifact
uses: actions/upload-artifact@v7
with:
name: ${{ matrix.artifact }}
path: |
target/${{ matrix.target }}/release/coval
target/${{ matrix.target }}/release/coval.exe