Skip to content

Commit

Permalink
ci: test with full feature set
Browse files Browse the repository at this point in the history
  • Loading branch information
chyyran committed Sep 6, 2024
1 parent 360c275 commit f98fb4b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,4 @@ jobs:
with:
toolchain: stable
- name: Test
run: cargo test -p spirv-cross2
run: cargo test -p spirv-cross2 --features=full
6 changes: 3 additions & 3 deletions spirv-cross2/src/targets.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use crate::compile;
use crate::compile::{CompilableTarget, NoOptions};
use crate::compile::CompilableTarget;
use crate::sealed::Sealed;
use spirv_cross_sys::CompilerBackend;

Expand Down Expand Up @@ -86,7 +86,7 @@ mod msl {
mod json {
use super::*;
impl CompilableTarget for Json {
type Options = NoOptions;
type Options = compile::NoOptions;
}
impl Sealed for Json {}
impl Target for Json {
Expand All @@ -100,7 +100,7 @@ mod cpp {
use super::*;
#[allow(deprecated)]
impl CompilableTarget for Cpp {
type Options = NoOptions;
type Options = compile::NoOptions;
}

#[allow(deprecated)]
Expand Down

0 comments on commit f98fb4b

Please sign in to comment.