forked from AVSLab/basilisk
-
Notifications
You must be signed in to change notification settings - Fork 0
178 lines (170 loc) · 6.83 KB
/
Copy pathpull-request.yml
File metadata and controls
178 lines (170 loc) · 6.83 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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
name: "Pull Request"
on:
pull_request:
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
# One full job per platform publishes Conan dependencies. Other jobs restore only.
pre-commit:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v5
- uses: ./.github/actions/pre-commit
build-linux:
runs-on: ubuntu-24.04
timeout-minutes: 90
needs: pre-commit
name: Linux (MAX Python)
steps:
- uses: actions/checkout@v5
- uses: ./.github/actions/data-cache
- name: Set up current stable Rust
run: |
rustup toolchain install stable --profile minimal --component clippy
rustup default stable
rustc --version
cargo --version
# Pull-request CI exercises Rust modules through Corrosion on Linux,
# Windows, and macOS.
- uses: ./.github/actions/build
with:
python-version: 3.14
conan-args: --opNav True --mujoco True --rustModules True
save-conan-cache: true
- name: Verify Corrosion configuration
shell: bash
run: |
grep -F "BUILD_RUST_MODULES:BOOL=ON" dist3/CMakeCache.txt
python -c "from Basilisk import getBuildInfo; assert getBuildInfo()['diagnostics']['tools']['corrosion']"
- name: Test Rust workspace
run: |
cargo test --workspace --all-features --locked --manifest-path src/Cargo.toml
cargo test -p bsk-build --no-default-features --locked --manifest-path src/Cargo.toml
- name: Test minimum supported Rust version
run: |
rustup toolchain install 1.89.0 --profile minimal
cargo +1.89.0 test --workspace --all-features --locked --manifest-path src/Cargo.toml
- name: Lint Rust workspace
run: cargo clippy --workspace --all-targets --all-features --locked --manifest-path src/Cargo.toml -- -D warnings
- name: Check Rust unwind policy
run: python3 .github/scripts/check_rust_unwind_policy.py
- name: Check committed Rust utility bindings are up to date
run: |
sudo apt-get update && sudo apt-get install -y libclang-dev
cargo install bindgen-cli --version '=0.72.1' --locked
python3 src/architecture/rust/gen_rust_utilities.py
if ! git diff --exit-code -- src/architecture/rust/bsk_utilities/src/raw.rs; then
echo "::error::src/architecture/rust/bsk_utilities/src/raw.rs is stale (it does not match the utility headers in this PR). Regenerate it locally and commit the result."
exit 1
fi
- name: Check committed Rust third-party licenses are up to date
run: |
cargo fetch --locked --manifest-path src/Cargo.toml
cargo install cargo-about --version '=0.9.1' --locked --features cli
python3 src/architecture/rust/generate_rust_licenses.py --check --require-tool
- name: Pytest
working-directory: src
run: |
pip install pytest-error-for-skips pytest-timeout
pytest -n auto -m "not ciSkip" -rs --error-for-skips --timeout=300 --timeout-method=thread --durations=25 -v
- name: CTest
if: ${{ always() && hashFiles('dist3/CTestTestfile.cmake') != '' }}
working-directory: dist3
run: ctest --output-on-failure
build-windows:
runs-on: windows-2025-vs2026
timeout-minutes: 105
needs: pre-commit
name: Windows (MAX Python)
env:
MPLBACKEND: agg
steps:
- uses: actions/checkout@v5
- uses: ./.github/actions/data-cache
- uses: ./.github/actions/build
with:
python-version: 3.14
conan-args: --opNav True --mujoco True --generator Ninja --rustModules True
save-conan-cache: true
- name: Verify Corrosion configuration
shell: bash
run: |
grep -F "BUILD_RUST_MODULES:BOOL=ON" dist3/CMakeCache.txt
python -c "from Basilisk import getBuildInfo; assert getBuildInfo()['diagnostics']['tools']['corrosion']"
- name: Pytest
shell: pwsh
working-directory: src
run: |
pip install pytest-error-for-skips pytest-timeout
pytest -n auto -m "not ciSkip" -rs --error-for-skips --timeout=300 --timeout-method=thread --durations=25 -v
if(($LastExitCode -ne 0) -and ($LastExitCode -ne 5)) {exit 1}
- name: CTest
if: ${{ always() && hashFiles('dist3/CTestTestfile.cmake') != '' }}
shell: pwsh
working-directory: dist3
run: |
ctest --output-on-failure
if(($LastExitCode -ne 0) -and ($LastExitCode -ne 5)) { exit 1 }
build-macos:
runs-on: macos-26
timeout-minutes: 90
needs: pre-commit
strategy:
fail-fast: false
matrix:
job_suffix: [""]
python_label: ["MIN Python"]
python: ["3.9"]
pytest_flags:
[
'-n auto -m "not ciSkip" -rs --error-for-skips --timeout=300 --timeout-method=thread --durations=25 -v',
]
conan_args:
[
"--opNav True --mujoco True --rustModules True",
]
include:
# An extra plain Basilisk build without optional opNav, MuJoCo, or visualization support
- python: "3.14"
python_label: "MAX Python"
pytest_flags: -n auto -m "not ciSkip" -rs --timeout=300 --timeout-method=thread --durations=25 -v
conan_args: --opNav False --mujoco False --vizInterface False
job_suffix: "--vizInterface False"
name: macOS (${{ matrix.python_label }}) ${{ matrix.job_suffix }}
steps:
- uses: actions/checkout@v5
- uses: ./.github/actions/data-cache
- uses: ./.github/actions/build
with:
python-version: ${{ matrix.python }}
conan-args: ${{ matrix.conan_args }}
- name: Verify Corrosion configuration
if: ${{ contains(matrix.conan_args, '--rustModules True') }}
shell: bash
run: |
grep -F "BUILD_RUST_MODULES:BOOL=ON" dist3/CMakeCache.txt
python -c "from Basilisk import getBuildInfo; assert getBuildInfo()['diagnostics']['tools']['corrosion']"
- name: Pytest
working-directory: src
run: |
pip install pytest-error-for-skips pytest-timeout
pytest ${{ matrix.pytest_flags }}
- name: CTest
if: ${{ always() && hashFiles('dist3/CTestTestfile.cmake') != '' }}
working-directory: dist3
run: ctest -C Release --output-on-failure
docs:
runs-on: macos-26
steps:
- uses: actions/checkout@v5
- uses: ./.github/actions/data-cache
- name: Build Basilisk
uses: ./.github/actions/build
with:
python-version: 3.14
conan-args: --opNav True --allOptPkg --mujoco True --rustModules True
save-conan-cache: true
- name: Build docs
uses: ./.github/actions/docs