Skip to content

Commit

Permalink
ci, why are you
Browse files Browse the repository at this point in the history
  • Loading branch information
Ciubix8513 committed Jul 8, 2024
1 parent ba45617 commit 8df68af
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: NcStudios/VulkanCI@v1.0
- uses: NcStudios/VulkanCI@v1.1
- uses: actions/checkout@v3
- name: Build
run: cargo build
Expand Down
3 changes: 1 addition & 2 deletions src/test_utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ async fn gen_gpu_async(instance: &wgpu::Instance) -> (wgpu::Device, wgpu::Queue)
let adapter = instance
.request_adapter(&wgpu::RequestAdapterOptionsBase {
power_preference: wgpu::PowerPreference::default(),
force_fallback_adapter: true,
force_fallback_adapter: false,
compatible_surface: None,
})
.await
Expand All @@ -17,7 +17,6 @@ async fn gen_gpu_async(instance: &wgpu::Instance) -> (wgpu::Device, wgpu::Queue)

///Generates all the necessary gpu data for tests
pub(crate) fn generate_gpu() {
//Initialize logging
_ = crate::logging::initialize_logging();

let instance = wgpu::Instance::default();
Expand Down

0 comments on commit 8df68af

Please sign in to comment.