aws-sdk-for-zig/build.zig

81 lines
3.3 KiB
Zig
Raw Normal View History

2021-06-30 16:37:14 +00:00
const std = @import("std");
const builtin = @import("builtin");
2021-04-27 18:24:01 +00:00
const Builder = @import("std").build.Builder;
const tst = @import("build_test.zig");
2021-04-27 18:24:01 +00:00
2021-06-30 16:37:14 +00:00
pub fn build(b: *Builder) !void {
2021-04-27 18:24:01 +00:00
// Standard target options allows the person running `zig build` to choose
// what target to build for. Here we do not override the defaults, which
// means any target is allowed, and the default is native. Other options
// for restricting supported target set are available.
const target = b.standardTargetOptions(.{});
// Standard release options allow the person running `zig build` to select
// between Debug, ReleaseSafe, ReleaseFast, and ReleaseSmall.
2023-08-04 23:40:24 +00:00
const optimize = b.standardOptimizeOption(.{});
2021-04-27 18:24:01 +00:00
2023-08-04 23:40:24 +00:00
const exe = b.addExecutable(.{
.name = "demo",
.root_source_file = .{ .path = "src/main.zig" },
.target = target,
.optimize = optimize,
});
const smithy_dep = b.dependency("smithy", .{
// These are the arguments to the dependency. It expects a target and optimization level.
.target = target,
.optimize = optimize,
});
exe.addModule("smithy", smithy_dep.module("smithy"));
// TODO: Smithy needs to be in a different repo
2021-06-30 16:37:14 +00:00
// https://github.com/ziglang/zig/issues/855
2023-08-04 23:40:24 +00:00
// exe.addModulePath("smithy", "smithy/src/smithy.zig");
2022-02-09 06:36:36 +00:00
if (target.getOs().tag != .macos) exe.linkage = .static;
2023-08-04 23:40:24 +00:00
// Strip is controlled by optimize options
// exe.strip = b.option(bool, "strip", "strip exe [true]") orelse true;
2023-08-04 23:40:24 +00:00
const run_cmd = b.addRunArtifact(exe);
2021-04-27 18:24:01 +00:00
run_cmd.step.dependOn(b.getInstallStep());
if (b.args) |args| {
run_cmd.addArgs(args);
}
const run_step = b.step("run", "Run the app");
run_step.dependOn(&run_cmd.step);
2021-06-30 16:37:14 +00:00
2023-08-04 23:40:24 +00:00
// TODO: Demo for testing is kind of terrible. Proper testing
// var test_step = try tst.addTestStep(b, optimize, exe.packages.items);
var codegen: ?*std.build.Step = null;
if (target.getOs().tag == .linux and false) {
// TODO: Support > linux with RunStep
// std.build.RunStep.create(null,null).cwd(std.fs.path.resolve(b.build_root, "codegen")).addArgs(...)
codegen = b.step("gen", "Generate zig service code from smithy models");
const cg = codegen.?;
cg.dependOn(&b.addSystemCommand(&.{ "/bin/sh", "-c", "cd codegen && zig build" }).step);
// This can probably be triggered instead by GitRepoStep cloning the repo
// with models
// Since codegen binary is built every time, if it's newer than our
// service manifest we know it needs to be regenerated. So this step
// will remove the service manifest if codegen has been touched, thereby
// triggering the re-gen
cg.dependOn(&b.addSystemCommand(&.{
"/bin/sh", "-c",
\\ [ ! -f src/models/service_manifest.zig ] || \
\\ [ $(find codegen -type f -newer src/models/service_manifest.zig -print -quit |wc -c) = '0' ] || \
\\ rm src/models/service_manifest.zig
}).step);
cg.dependOn(&b.addSystemCommand(&.{
"/bin/sh", "-c",
\\ mkdir -p src/models/ && \
\\ [ -f src/models/service_manifest.zig ] || \
\\ ( cd codegen/models && ../codegen *.json && mv *.zig ../../src/models )
}).step);
exe.step.dependOn(cg);
}
2021-06-30 18:13:12 +00:00
2023-08-04 23:40:24 +00:00
b.installArtifact(exe);
}