mirror of
https://github.com/zigzap/zap.git
synced 2025-10-20 15:14:08 +00:00
for now: skip http in zig build all
This commit is contained in:
parent
56cead12a6
commit
39b543a45e
1 changed files with 7 additions and 1 deletions
|
@ -84,7 +84,13 @@ pub fn build(b: *std.build.Builder) !void {
|
||||||
// install the artifact - depending on the "example"
|
// install the artifact - depending on the "example"
|
||||||
const example_build_step = b.addInstallArtifact(example, .{});
|
const example_build_step = b.addInstallArtifact(example, .{});
|
||||||
example_step.dependOn(&example_build_step.step);
|
example_step.dependOn(&example_build_step.step);
|
||||||
all_step.dependOn(&example_build_step.step);
|
|
||||||
|
// ignore https in all because of required -Dopenssl=true
|
||||||
|
// TODO: fix GH pipeline to take care of that
|
||||||
|
// or: auto-provide openssl for https in build.zig
|
||||||
|
if (!std.mem.eql(u8, ex_name, "https")) {
|
||||||
|
all_step.dependOn(&example_build_step.step);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
//
|
//
|
||||||
|
|
Loading…
Add table
Reference in a new issue