Skip to content

Commit c1b1d47

Browse files
committed
fix build-dev -> build-debug + pecos example dependency
1 parent 91a889c commit c1b1d47

2 files changed

Lines changed: 6 additions & 2 deletions

File tree

.github/workflows/python-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ jobs:
219219
$env:LLVM_SYS_140_PREFIX = $env:LLVM_SYS_140_PREFIX
220220
221221
# Build and test
222-
make build-dev
222+
make build-debug
223223
make pytest-all
224224
225225
- name: Build and test PECOS (non-Windows)
@@ -266,7 +266,7 @@ jobs:
266266
fi
267267
268268
# Build the project
269-
make build-dev
269+
make build-debug
270270
271271
# After build, verify the extension module on macOS
272272
if [[ "${{ runner.os }}" == "macOS" ]]; then

crates/pecos/Cargo.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,5 +85,9 @@ pecos-rng.workspace = true
8585
log.workspace = true
8686
serde_json.workspace = true
8787

88+
[[example]]
89+
name = "quest_example"
90+
required-features = ["quest"]
91+
8892
[lints]
8993
workspace = true

0 commit comments

Comments
 (0)