Skip to content

Commit 74a5747

Browse files
committed
Chore: ignore optix crates in CI and add back removed feature
1 parent e838e6a commit 74a5747

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.github/workflows/rust.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,9 @@ jobs:
5555
if: contains(matrix.os, 'ubuntu')
5656
run: cargo fmt --all -- --check
5757

58+
# Temporarily exclude crates that rely on OptiX until we merge the rewritten optix because of bindings weirdness
5859
- name: Build
59-
run: cargo build --workspace
60+
run: cargo build --workspace --exclude "optix" --exclude "optix_sys" --exclude "path_tracer" --exclude "denoiser"
6061

6162
# Don't currently test because many tests rely on the system having a CUDA GPU
6263
# - name: Test

crates/cust/Cargo.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,6 @@ find_cuda_helper = { path = "../find_cuda_helper", version = "0.1" }
1818

1919
[dev-dependencies]
2020
image = "0.23.14"
21+
22+
[features]
23+
default = ["vek"]

0 commit comments

Comments
 (0)