|
40 | 40 | run: cargo test --features secure
|
41 | 41 |
|
42 | 42 | - name: Test libmimalloc-sys crate bindings (secure)
|
43 |
| - run: cargo run --features secure -p libmimalloc-sys-test |
| 43 | + run: cargo run --features libmimalloc-sys-test/secure -p libmimalloc-sys-test |
44 | 44 |
|
45 | 45 | - name: Build (no secure)
|
46 | 46 | run: cargo build
|
|
58 | 58 | run: cargo test --features extended
|
59 | 59 |
|
60 | 60 | - name: Test libmimalloc-sys crate bindings (extended)
|
61 |
| - run: cargo run --features extended -p libmimalloc-sys-test |
| 61 | + run: cargo run --features libmimalloc-sys-test/extended -p libmimalloc-sys-test |
| 62 | + |
| 63 | + - name: Build (v3, secure) |
| 64 | + run: cargo build --features v3,secure |
| 65 | + |
| 66 | + - name: Test (v3, secure) |
| 67 | + run: cargo test --features v3,secure |
| 68 | + |
| 69 | + - name: Test libmimalloc-sys crate bindings (v3, secure) |
| 70 | + run: cargo run --features libmimalloc-sys-test/v3,libmimalloc-sys-test/secure -p libmimalloc-sys-test |
| 71 | + |
| 72 | + - name: Build (v3, no secure) |
| 73 | + run: cargo build --features v3 |
| 74 | + |
| 75 | + - name: Test (v3, no secure) |
| 76 | + run: cargo test --features v3 |
| 77 | + |
| 78 | + - name: Test libmimalloc-sys crate bindings (v3, no secure) |
| 79 | + run: cargo run --features libmimalloc-sys-test/v3 -p libmimalloc-sys-test |
| 80 | + |
| 81 | + - name: Build (v3, extended) |
| 82 | + run: cargo build --features v3,extended |
| 83 | + |
| 84 | + - name: Test (v3, extended) |
| 85 | + run: cargo test --features v3,extended |
| 86 | + |
| 87 | + - name: Test libmimalloc-sys crate bindings (v3, extended) |
| 88 | + run: cargo run --features libmimalloc-sys-test/v3,libmimalloc-sys-test/extended -p libmimalloc-sys-test |
62 | 89 |
|
63 | 90 | lint:
|
64 | 91 | name: Rustfmt / Clippy
|
|
0 commit comments