From 3edfd283eadefebd67d59f722e3d7d500f694018 Mon Sep 17 00:00:00 2001 From: Jakub Konka Date: Thu, 14 Mar 2024 23:10:01 +0100 Subject: [PATCH] skip pointless test step --- .github/workflows/ci.yml | 3 +-- build.zig | 9 --------- 2 files changed, 1 insertion(+), 11 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 82e5389..4c2a04a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,5 +21,4 @@ jobs: with: version: master - run: zig fmt --check src - - run: zig build test - - run: zig build install \ No newline at end of file + - run: zig build install diff --git a/build.zig b/build.zig index 3965039..508c5ff 100644 --- a/build.zig +++ b/build.zig @@ -20,13 +20,4 @@ pub fn build(b: *std.Build) void { const run_step = b.step("run", "Run the app"); run_step.dependOn(&run_cmd.step); - - const tests = b.addTest(.{ - .root_source_file = .{ .path = "src/Zcoff.zig" }, - .target = target, - .optimize = mode, - }); - const tests_run = b.addRunArtifact(tests); - const test_step = b.step("test", "Run all tests"); - test_step.dependOn(&tests_run.step); }