Skip to content

Commit

Permalink
CI: Also checkout submodules to have access to Vulkan headers
Browse files Browse the repository at this point in the history
  • Loading branch information
MarijnS95 committed May 2, 2024
1 parent a2c08d9 commit 83f3eea
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ jobs:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Cargo fmt
run: cargo fmt --all -- --check
- name: Cargo clippy
Expand All @@ -20,6 +22,8 @@ jobs:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
- uses: dtolnay/rust-toolchain@nightly
- name: Generate minimal-version dependencies
run: cargo -Zminimal-versions generate-lockfile
Expand Down
2 changes: 1 addition & 1 deletion sys/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ fn build_fsr3(api_dir: &Path, vk_include_dir: &Path) {

// #[cfg(not(feature = "d3d12"))]
// #[cfg(not(feature = "vulkan"))]
// TODO: The vk bindings won't fork for FSR3 yet
// TODO: The vk bindings won't work for FSR3 yet
let backends = ["shared", "vk", "dx12", "dx12/FrameInterpolationSwapchain"];
for backend in backends {
let paths = glob(&format!(
Expand Down

0 comments on commit 83f3eea

Please sign in to comment.