ci: remove compile-all step

examples are moved to a separate repo and `zig build` does the same
This commit is contained in:
Ali Chraghi 2022-12-25 14:23:02 +03:30 committed by Stephen Gutekanst
parent f9b3ac2106
commit 061daa790f
3 changed files with 5 additions and 26 deletions

View file

@ -115,9 +115,6 @@ pub fn build(b: *Builder) !void {
const shared_lib = try buildSharedLib(b, mode, target, options);
shared_lib.install();
}
const compile_all = b.step("compile-all", "Compile Mach");
compile_all.dependOn(b.getInstallStep());
}
fn testStep(b: *Builder, mode: std.builtin.Mode, target: CrossTarget) *std.build.RunStep {