2021-06-30 16:37:14 +00:00
|
|
|
const std = @import("std");
|
|
|
|
const builtin = @import("builtin");
|
2024-03-30 22:26:24 +00:00
|
|
|
const Builder = @import("std").Build;
|
2023-08-25 18:31:18 +00:00
|
|
|
|
|
|
|
const models_subdir = "codegen/sdk-codegen/aws-models/"; // note will probably not work on windows
|
2021-04-27 18:24:01 +00:00
|
|
|
|
2024-08-23 20:50:30 +00:00
|
|
|
// UNCOMMENT AFTER MODEL GEN TO USE IN BUILD SCRIPTS //pub const aws = @import("src/aws.zig");
|
2024-08-23 20:17:52 +00:00
|
|
|
|
2024-07-01 19:55:49 +00:00
|
|
|
const test_targets = [_]std.Target.Query{
|
2024-01-09 23:16:29 +00:00
|
|
|
.{}, // native
|
2024-08-23 19:16:30 +00:00
|
|
|
.{ .cpu_arch = .x86_64, .os_tag = .linux },
|
|
|
|
.{ .cpu_arch = .aarch64, .os_tag = .linux },
|
2024-10-17 19:00:20 +00:00
|
|
|
.{ .cpu_arch = .riscv64, .os_tag = .linux },
|
2024-08-23 19:16:30 +00:00
|
|
|
.{ .cpu_arch = .arm, .os_tag = .linux },
|
|
|
|
.{ .cpu_arch = .x86_64, .os_tag = .windows },
|
|
|
|
.{ .cpu_arch = .aarch64, .os_tag = .macos },
|
|
|
|
.{ .cpu_arch = .x86_64, .os_tag = .macos },
|
2024-08-23 19:59:56 +00:00
|
|
|
// .{ .cpu_arch = .wasm32, .os_tag = .wasi },
|
2024-01-09 23:16:29 +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
|
|
|
|
2024-04-23 15:55:56 +00:00
|
|
|
const broken_windows = b.option(
|
|
|
|
bool,
|
|
|
|
"broken-windows",
|
|
|
|
"Windows is broken in this environment (do not run Windows tests)",
|
|
|
|
) orelse false;
|
2023-08-14 15:49:23 +00:00
|
|
|
// TODO: Embed the current git version in the code. We can do this
|
|
|
|
// by looking for .git/HEAD (if it exists, follow the ref to /ref/heads/whatevs,
|
|
|
|
// grab that commit, and use b.addOptions/exe.addOptions to generate the
|
|
|
|
// Options file. See https://github.com/ziglang/zig/issues/14979 for usage
|
|
|
|
// example.
|
|
|
|
//
|
|
|
|
// From there, I'm not sure what the generated file looks like or quite how
|
|
|
|
// to use, but that should be easy. It may also give some ideas on the
|
|
|
|
// code gen piece itself, though it might be nice to leave as a seperate
|
|
|
|
// executable
|
2023-09-05 20:00:40 +00:00
|
|
|
// TODO: This executable should not be built when importing as a package.
|
|
|
|
// It relies on code gen and is all fouled up when getting imported
|
2023-08-04 23:40:24 +00:00
|
|
|
const exe = b.addExecutable(.{
|
|
|
|
.name = "demo",
|
2024-06-04 21:53:09 +00:00
|
|
|
.root_source_file = b.path("src/main.zig"),
|
2023-08-04 23:40:24 +00:00
|
|
|
.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,
|
|
|
|
});
|
2023-09-05 23:38:37 +00:00
|
|
|
const smithy_module = smithy_dep.module("smithy");
|
2024-03-30 22:26:24 +00:00
|
|
|
exe.root_module.addImport("smithy", smithy_module); // not sure this should be here...
|
2021-06-12 20:40:23 +00:00
|
|
|
|
2023-09-14 22:11:03 +00:00
|
|
|
// Expose module to others
|
|
|
|
_ = b.addModule("aws", .{
|
2024-06-04 21:53:09 +00:00
|
|
|
.root_source_file = b.path("src/aws.zig"),
|
2024-03-30 22:26:24 +00:00
|
|
|
.imports = &.{.{ .name = "smithy", .module = smithy_module }},
|
2023-08-27 18:40:56 +00:00
|
|
|
});
|
2023-09-14 22:11:03 +00:00
|
|
|
|
|
|
|
// Expose module to others
|
|
|
|
_ = b.addModule("aws-signing", .{
|
2024-06-04 21:53:09 +00:00
|
|
|
.root_source_file = b.path("src/aws_signing.zig"),
|
2024-03-30 22:26:24 +00:00
|
|
|
.imports = &.{.{ .name = "smithy", .module = smithy_module }},
|
2023-09-14 22:11:03 +00:00
|
|
|
});
|
2023-08-15 05:38:37 +00:00
|
|
|
// TODO: This does not work correctly due to https://github.com/ziglang/zig/issues/16354
|
|
|
|
//
|
|
|
|
// We are working here with kind of a weird dependency though. So we can do this
|
|
|
|
// another way
|
|
|
|
//
|
|
|
|
// TODO: These target/optimize are not correct, as we need to run the thing
|
|
|
|
// const codegen = b.anonymousDependency("codegen/", @import("codegen/build.zig"), .{
|
|
|
|
// .target = target,
|
|
|
|
// .optimize = optimize,
|
|
|
|
// });
|
|
|
|
// const codegen_cmd = b.addRunArtifact(codegen.artifact("codegen"));
|
|
|
|
// exe.step.dependOn(&codegen_cmd.step);
|
2022-01-11 05:49:59 +00:00
|
|
|
|
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
|
|
|
|
2024-01-09 23:16:29 +00:00
|
|
|
const gen_step = blk: {
|
2023-08-15 05:38:37 +00:00
|
|
|
const cg = b.step("gen", "Generate zig service code from smithy models");
|
|
|
|
|
|
|
|
const cg_exe = b.addExecutable(.{
|
|
|
|
.name = "codegen",
|
2024-06-04 21:53:09 +00:00
|
|
|
.root_source_file = b.path("codegen/src/main.zig"),
|
2023-08-15 05:38:37 +00:00
|
|
|
// We need this generated for the host, not the real target
|
2024-03-30 22:26:24 +00:00
|
|
|
.target = b.host,
|
2023-08-15 05:56:19 +00:00
|
|
|
.optimize = if (b.verbose) .Debug else .ReleaseSafe,
|
2023-08-15 05:38:37 +00:00
|
|
|
});
|
2024-03-30 22:26:24 +00:00
|
|
|
cg_exe.root_module.addImport("smithy", smithy_dep.module("smithy"));
|
2023-08-15 05:38:37 +00:00
|
|
|
var cg_cmd = b.addRunArtifact(cg_exe);
|
|
|
|
cg_cmd.addArg("--models");
|
2024-03-30 22:26:24 +00:00
|
|
|
const hash = hash_blk: {
|
|
|
|
for (b.available_deps) |dep| {
|
|
|
|
const dep_name = dep.@"0";
|
|
|
|
const dep_hash = dep.@"1";
|
|
|
|
if (std.mem.eql(u8, dep_name, "models"))
|
|
|
|
break :hash_blk dep_hash;
|
|
|
|
}
|
|
|
|
return error.DependencyNamedModelsNotFoundInBuildZigZon;
|
|
|
|
};
|
2023-08-25 18:31:18 +00:00
|
|
|
cg_cmd.addArg(try std.fs.path.join(
|
|
|
|
b.allocator,
|
2024-03-30 22:26:24 +00:00
|
|
|
&[_][]const u8{
|
|
|
|
b.graph.global_cache_root.path.?,
|
|
|
|
"p",
|
|
|
|
hash,
|
|
|
|
models_subdir,
|
|
|
|
},
|
2023-08-25 18:31:18 +00:00
|
|
|
));
|
2023-08-15 05:38:37 +00:00
|
|
|
cg_cmd.addArg("--output");
|
2024-04-22 15:19:24 +00:00
|
|
|
cg_cmd.addDirectoryArg(b.path("src/models"));
|
2023-08-15 05:56:19 +00:00
|
|
|
if (b.verbose)
|
|
|
|
cg_cmd.addArg("--verbose");
|
2024-03-30 22:26:24 +00:00
|
|
|
// cg_cmd.step.dependOn(&fetch_step.step);
|
2023-08-14 15:48:01 +00:00
|
|
|
// TODO: this should use zig_exe from std.Build
|
|
|
|
// codegen should store a hash in a comment
|
|
|
|
// this would be hash of the exe that created the file
|
|
|
|
// concatenated with hash of input json. this would
|
|
|
|
// allow skipping generated files. May not include hash
|
|
|
|
// of contents of output file as maybe we want to tweak
|
|
|
|
// manually??
|
|
|
|
//
|
|
|
|
// All the hashes can be in service_manifest.zig, which
|
|
|
|
// could be fun to just parse and go nuts. Top of
|
|
|
|
// file, generator exe hash. Each import has comment
|
|
|
|
// with both input and output hash and we can decide
|
|
|
|
// later about warning on manual changes...
|
2022-01-11 05:49:59 +00:00
|
|
|
|
2023-08-15 05:38:37 +00:00
|
|
|
cg.dependOn(&cg_cmd.step);
|
2024-01-09 23:16:29 +00:00
|
|
|
break :blk cg;
|
|
|
|
};
|
|
|
|
|
|
|
|
exe.step.dependOn(gen_step);
|
2021-06-30 18:13:12 +00:00
|
|
|
|
2024-01-09 23:16:29 +00:00
|
|
|
// Similar to creating the run step earlier, this exposes a `test` step to
|
|
|
|
// the `zig build --help` menu, providing a way for the user to request
|
|
|
|
// running the unit tests.
|
|
|
|
const test_step = b.step("test", "Run unit tests");
|
|
|
|
|
2024-04-03 00:47:50 +00:00
|
|
|
// // Creates a step for unit testing. This only builds the test executable
|
|
|
|
// // but does not run it.
|
|
|
|
// const unit_tests = b.addTest(.{
|
|
|
|
// .root_source_file = .{ .path = "src/aws.zig" },
|
|
|
|
// .target = target,
|
|
|
|
// .optimize = optimize,
|
|
|
|
// });
|
|
|
|
// unit_tests.root_module.addImport("smithy", smithy_dep.module("smithy"));
|
|
|
|
// unit_tests.step.dependOn(gen_step);
|
|
|
|
//
|
|
|
|
// const run_unit_tests = b.addRunArtifact(unit_tests);
|
|
|
|
// run_unit_tests.skip_foreign_checks = true;
|
|
|
|
|
|
|
|
// test_step.dependOn(&run_unit_tests.step);
|
2024-01-09 23:16:29 +00:00
|
|
|
for (test_targets) |t| {
|
2024-04-23 15:55:56 +00:00
|
|
|
if (broken_windows and t.os_tag == .windows) continue;
|
2024-01-09 23:16:29 +00:00
|
|
|
// Creates a step for unit testing. This only builds the test executable
|
|
|
|
// but does not run it.
|
|
|
|
const unit_tests = b.addTest(.{
|
2024-06-04 21:53:09 +00:00
|
|
|
.root_source_file = b.path("src/aws.zig"),
|
2024-03-30 22:26:24 +00:00
|
|
|
.target = b.resolveTargetQuery(t),
|
2024-01-09 23:16:29 +00:00
|
|
|
.optimize = optimize,
|
|
|
|
});
|
2024-03-30 22:26:24 +00:00
|
|
|
unit_tests.root_module.addImport("smithy", smithy_dep.module("smithy"));
|
2024-01-09 23:16:29 +00:00
|
|
|
unit_tests.step.dependOn(gen_step);
|
|
|
|
|
|
|
|
const run_unit_tests = b.addRunArtifact(unit_tests);
|
|
|
|
run_unit_tests.skip_foreign_checks = true;
|
|
|
|
|
|
|
|
test_step.dependOn(&run_unit_tests.step);
|
|
|
|
}
|
2024-07-02 01:54:58 +00:00
|
|
|
const check = b.step("check", "Check compilation errors");
|
|
|
|
check.dependOn(&exe.step);
|
2024-10-17 17:02:55 +00:00
|
|
|
|
|
|
|
// Similar to creating the run step earlier, this exposes a `test` step to
|
|
|
|
// the `zig build --help` menu, providing a way for the user to request
|
|
|
|
// running the unit tests.
|
|
|
|
const smoke_test_step = b.step("smoke-test", "Run unit tests");
|
|
|
|
|
|
|
|
// Creates a step for unit testing. This only builds the test executable
|
|
|
|
// but does not run it.
|
|
|
|
const smoke_test = b.addTest(.{
|
|
|
|
.root_source_file = b.path("src/aws.zig"),
|
|
|
|
.target = target,
|
|
|
|
.optimize = optimize,
|
|
|
|
});
|
|
|
|
smoke_test.root_module.addImport("smithy", smithy_dep.module("smithy"));
|
|
|
|
smoke_test.step.dependOn(gen_step);
|
|
|
|
|
|
|
|
const run_smoke_test = b.addRunArtifact(smoke_test);
|
|
|
|
|
|
|
|
smoke_test_step.dependOn(&run_smoke_test.step);
|
2023-08-04 23:40:24 +00:00
|
|
|
b.installArtifact(exe);
|
2022-01-11 05:49:59 +00:00
|
|
|
}
|