From 2045142057ff4c6b9b8cd45766a71ed30b71551e Mon Sep 17 00:00:00 2001 From: Ali Chraghi Date: Sat, 6 Aug 2022 14:45:33 +0430 Subject: [PATCH] build: remove gpu-dawn test step --- build.zig | 1 - 1 file changed, 1 deletion(-) diff --git a/build.zig b/build.zig index 3a72eb54..cd969f51 100644 --- a/build.zig +++ b/build.zig @@ -29,7 +29,6 @@ pub fn build(b: *std.build.Builder) void { const test_step = b.step("test", "Run library tests"); test_step.dependOn(&main_tests.run().step); test_step.dependOn(&gpu.testStep(b, mode, target, @bitCast(gpu.Options, options)).step); - test_step.dependOn(&gpu_dawn.testStep(b, mode, target).step); test_step.dependOn(&glfw.testStep(b, mode, target).step); test_step.dependOn(&ecs.testStep(b, mode, target).step); test_step.dependOn(&freetype.testStep(b, mode, target).step);