Emil Lerch
0736660669
All checks were successful
AWS-Zig Build / build-zig-0.11.0-amd64-host (push) Successful in 1m33s
77 lines
3.4 KiB
Zig
77 lines
3.4 KiB
Zig
const std = @import("std");
|
|
|
|
// Although this function looks imperative, note that its job is to
|
|
// declaratively construct a build graph that will be executed by an external
|
|
// runner.
|
|
pub fn build(b: *std.Build) !void {
|
|
// 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 optimization options allow the person running `zig build` to select
|
|
// between Debug, ReleaseSafe, ReleaseFast, and ReleaseSmall. Here we do not
|
|
// set a preferred release mode, allowing the user to decide how to optimize.
|
|
const optimize = b.standardOptimizeOption(.{});
|
|
|
|
const lib = b.addStaticLibrary(.{
|
|
.name = "universal-lambda-zig",
|
|
// In this case the main source file is merely a path, however, in more
|
|
// complicated build scripts, this could be a generated file.
|
|
.root_source_file = .{ .path = "src/universal_lambda_build.zig" },
|
|
.target = target,
|
|
.optimize = optimize,
|
|
});
|
|
const universal_lambda = @import("src/universal_lambda_build.zig");
|
|
universal_lambda.module_root = b.build_root.path;
|
|
_ = try universal_lambda.addModules(b, lib);
|
|
|
|
// This declares intent for the library to be installed into the standard
|
|
// location when the user invokes the "install" step (the default step when
|
|
// running `zig build`).
|
|
b.installArtifact(lib);
|
|
|
|
// Creates steps for unit testing. This only builds the test executable
|
|
// but does not run it.
|
|
const exe_tests = b.addTest(.{
|
|
.root_source_file = .{ .path = "src/test.zig" },
|
|
.target = target,
|
|
.optimize = optimize,
|
|
});
|
|
_ = try universal_lambda.addModules(b, exe_tests);
|
|
|
|
var run_exe_tests = b.addRunArtifact(exe_tests);
|
|
run_exe_tests.skip_foreign_checks = true;
|
|
|
|
// Universal lambda can end up as an exe or a lib. When it is a library,
|
|
// we end up changing the root source file away from downstream so we can
|
|
// control exports and such. This is just flexilib for now, but we could
|
|
// end up in a situation where we need to create an array of libraries
|
|
// with various roots that all meet the rest of the build DAG at test_step
|
|
// in the future. Scaleway, for instance, is another system that works
|
|
// via shared library
|
|
const lib_tests = b.addTest(.{
|
|
.root_source_file = .{ .path = "src/flexilib.zig" },
|
|
.target = target,
|
|
.optimize = optimize,
|
|
});
|
|
_ = try universal_lambda.addModules(b, lib_tests);
|
|
|
|
var run_lib_tests = b.addRunArtifact(lib_tests);
|
|
run_lib_tests.skip_foreign_checks = true;
|
|
// This creates a build step. It will be visible in the `zig build --help` menu,
|
|
// and can be selected like this: `zig build test`
|
|
// This will evaluate the `test` step rather than the default, which is "install".
|
|
const test_step = b.step("test", "Run library tests");
|
|
test_step.dependOn(&run_exe_tests.step);
|
|
test_step.dependOn(&run_lib_tests.step);
|
|
}
|
|
|
|
pub fn configureBuild(b: *std.Build, cs: *std.Build.Step.Compile) !void {
|
|
try @import("src/universal_lambda_build.zig").configureBuild(b, cs);
|
|
}
|
|
pub fn addModules(b: *std.Build, cs: *std.Build.Step.Compile) ![]const u8 {
|
|
return try @import("src/universal_lambda_build.zig").addModules(b, cs);
|
|
}
|