File tree Expand file tree Collapse file tree 1 file changed +3
-6
lines changed Expand file tree Collapse file tree 1 file changed +3
-6
lines changed Original file line number Diff line number Diff line change 19
19
name : Rust ${{ matrix.rust }} on ${{ matrix.os }}
20
20
runs-on : ${{ matrix.os }}
21
21
env :
22
- # Temporarily exclude crates that rely on OptiX until we merge the rewritten optix because of bindings weirdness
23
- # Also exclude add until we figure out the right way to auto-add libnvvm to path.
24
22
LLVM_LINK_STATIC : 1
25
- EXCLUDE_ARGS : --exclude "optix" --exclude "optix_sys" --exclude "path_tracer" --exclude "denoiser" --exclude "add"
26
23
strategy :
27
24
fail-fast : false
28
25
matrix :
67
64
run : cargo fmt --all -- --check
68
65
69
66
- name : Build
70
- run : eval(" cargo build --workspace ${EXCLUDE_ARGS}")
67
+ run : cargo build --workspace --exclude "optix" --exclude "optix_sys" --exclude "path_tracer" --exclude "denoiser" --exclude "add"
71
68
72
69
# Don't currently test because many tests rely on the system having a CUDA GPU
73
70
# - name: Test
77
74
if : contains(matrix.os, 'ubuntu')
78
75
env :
79
76
RUSTFLAGS : -Dwarnings
80
- run : eval(" cargo clippy --workspace ${EXCLUDE_ARGS}")
77
+ run : cargo clippy --workspace --exclude "optix" --exclude "optix_sys" --exclude "path_tracer" --exclude "denoiser" --exclude "add"
81
78
82
79
- name : Check documentation
83
80
env :
84
81
RUSTDOCFLAGS : -Dwarnings
85
- run : eval(" cargo doc --workspace --all-features --document-private-items --no-deps ${EXCLUDE_ARGS}")
82
+ run : \ cargo doc --workspace --all-features --document-private-items --no-deps --exclude "optix" --exclude "optix_sys" --exclude "path_tracer" --exclude "denoiser" --exclude "add"
You can’t perform that action at this time.
0 commit comments