Merge branch 'master' into zig-develop
This commit is contained in:
commit
aac7b03c2e
5 changed files with 115 additions and 85 deletions
|
@ -1,5 +1,6 @@
|
||||||
name: AWS-Zig Build
|
name: AWS-Zig Build
|
||||||
on:
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
- 'zig-0.13'
|
- 'zig-0.13'
|
||||||
|
|
61
README.md
61
README.md
|
@ -1,11 +1,11 @@
|
||||||
AWS SDK for Zig
|
AWS SDK for Zig
|
||||||
===============
|
===============
|
||||||
|
|
||||||
[Zig 0.13](https://ziglang.org/download/#release-0.13.0):
|
[Zig 0.14](https://ziglang.org/download/#release-0.14.0):
|
||||||
|
|
||||||
[](https://git.lerch.org/lobo/aws-sdk-for-zig/actions?workflow=build.yaml&state=closed)
|
[](https://git.lerch.org/lobo/aws-sdk-for-zig/actions?workflow=build.yaml&state=closed)
|
||||||
|
|
||||||
[Last Mach Nominated Zig Version](https://machengine.org/about/nominated-zig/):
|
[Last Mach Nominated Zig Version](https://machengine.org/docs/nominated-zig/):
|
||||||
|
|
||||||
[](https://git.lerch.org/lobo/aws-sdk-for-zig/actions?workflow=zig-mach.yaml&state=closed)
|
[](https://git.lerch.org/lobo/aws-sdk-for-zig/actions?workflow=zig-mach.yaml&state=closed)
|
||||||
|
|
||||||
|
@ -13,12 +13,13 @@ AWS SDK for Zig
|
||||||
|
|
||||||
[](https://git.lerch.org/lobo/aws-sdk-for-zig/actions?workflow=zig-nightly.yaml&state=closed)
|
[](https://git.lerch.org/lobo/aws-sdk-for-zig/actions?workflow=zig-nightly.yaml&state=closed)
|
||||||
|
|
||||||
**NOTE ON BUILD STATUS**: The nightly/mach nominated version of this currently
|
[Zig 0.13](https://ziglang.org/download/#release-0.13.0):
|
||||||
panics under CI, but I have not yet reproduced this panic. Running manually on
|
|
||||||
multiple machines appears to be working properly
|
[](https://git.lerch.org/lobo/aws-sdk-for-zig/actions?workflow=zig-previous.yaml&state=closed)
|
||||||
|
|
||||||
|
|
||||||
Current executable size for the demo is 980k after compiling with -Doptimize=ReleaseSmall
|
Current executable size for the demo is 980k after compiling with -Doptimize=ReleaseSmall
|
||||||
in x86_linux, and will vary based on services used. Tested targets:
|
in x86_64-linux, and will vary based on services used. Tested targets:
|
||||||
|
|
||||||
* x86_64-linux
|
* x86_64-linux
|
||||||
* riscv64-linux
|
* riscv64-linux
|
||||||
|
@ -30,22 +31,38 @@ in x86_linux, and will vary based on services used. Tested targets:
|
||||||
|
|
||||||
Tested targets are built, but not continuously tested, by CI.
|
Tested targets are built, but not continuously tested, by CI.
|
||||||
|
|
||||||
Zig-Develop Branch
|
Branches
|
||||||
------------------
|
--------
|
||||||
|
|
||||||
This branch is intended for use with the in-development version of Zig. This
|
* **master**: This branch tracks the latest released zig version
|
||||||
starts with 0.12.0-dev.3180+83e578a18. This is aligned with [Mach Engine's Nominated
|
* **zig-0.13**: This branch tracks the previous released zig version (0.13 currently).
|
||||||
Zig Versions](https://machengine.org/about/nominated-zig/). Nightly zig versions
|
Support for the previous version is best effort, generally
|
||||||
are difficult to keep up with and there is no special effort made there, build
|
degrading over time. Fixes will generally appear in master, then
|
||||||
status is FYI (and used as a canary for nominated zig versions).
|
backported into the previous version.
|
||||||
|
* **zig-mach**: This branch tracks the latest mach nominated version. A separate
|
||||||
|
branch is necessary as mach nominated is usually, but not always,
|
||||||
|
more recent than the latest production zig. Support for the mach
|
||||||
|
version is best effort.
|
||||||
|
* **zig-develop**: This branch tracks zig nightly, and is used mainly as a canary
|
||||||
|
for breaking changes that will need to be dealt with when
|
||||||
|
a new mach nominated version or new zig release appear.
|
||||||
|
Expect significant delays in any build failures.
|
||||||
|
|
||||||
|
Other branches/tags exist but are unsupported
|
||||||
|
|
||||||
Building
|
Building
|
||||||
--------
|
--------
|
||||||
|
|
||||||
`zig build` should work. It will build the code generation project, fetch model
|
`zig build` should work. It will build the code generation project, fetch model
|
||||||
files from upstream AWS Go SDK v2, run the code generation, then build the main
|
files from upstream AWS Go SDK v2, run the code generation, then build the main
|
||||||
project with the generated code. Testing can be done with `zig test`.
|
project with the generated code. Testing can be done with `zig build test`. Note that
|
||||||
|
this command tests on all supported architectures, so for a faster testing
|
||||||
|
process, use `zig build smoke-test` instead.
|
||||||
|
|
||||||
|
To make development even faster, a build option is provided to avoid the use of
|
||||||
|
LLVM. To use this, use the command `zig build -Dno-llvm smoke-test`. This
|
||||||
|
can reduce build/test time 300%. Note, however, native code generation in zig
|
||||||
|
is not yet complete, so you may see errors.
|
||||||
|
|
||||||
Using
|
Using
|
||||||
-----
|
-----
|
||||||
|
@ -53,7 +70,8 @@ Using
|
||||||
This is designed for use with the Zig package manager, and exposes a module
|
This is designed for use with the Zig package manager, and exposes a module
|
||||||
called "aws". Set up `build.zig.zon` and add the dependency/module to your project
|
called "aws". Set up `build.zig.zon` and add the dependency/module to your project
|
||||||
as normal and the package manager should do its thing. A full example can be found
|
as normal and the package manager should do its thing. A full example can be found
|
||||||
in [/example](example/README.md).
|
in [/example](example/build.zig.zon). This can also be used at build time in
|
||||||
|
a downstream project's `build.zig`.
|
||||||
|
|
||||||
Configuring the module and/or Running the demo
|
Configuring the module and/or Running the demo
|
||||||
----------------------------------------------
|
----------------------------------------------
|
||||||
|
@ -61,8 +79,8 @@ Configuring the module and/or Running the demo
|
||||||
This library mimics the aws c libraries for it's work, so it operates like most
|
This library mimics the aws c libraries for it's work, so it operates like most
|
||||||
other 'AWS things'. [/src/main.zig](src/main.zig) gives you a handful of examples
|
other 'AWS things'. [/src/main.zig](src/main.zig) gives you a handful of examples
|
||||||
for working with services. For local testing or alternative endpoints, there's
|
for working with services. For local testing or alternative endpoints, there's
|
||||||
no real standard, so there is code to look for `AWS_ENDPOINT_URL` environment
|
no real standard, so there is code to look for an environment variable
|
||||||
variable that will supersede all other configuration.
|
`AWS_ENDPOINT_URL` variable that will supersede all other configuration.
|
||||||
|
|
||||||
Limitations
|
Limitations
|
||||||
-----------
|
-----------
|
||||||
|
@ -83,13 +101,6 @@ TODO List:
|
||||||
* Implement timeouts and other TODO's in the code
|
* Implement timeouts and other TODO's in the code
|
||||||
* Add option to cache signature keys
|
* Add option to cache signature keys
|
||||||
|
|
||||||
Services without TLS 1.3 support
|
|
||||||
--------------------------------
|
|
||||||
|
|
||||||
All AWS services should support TLS 1.3 at this point, but there are many regions
|
|
||||||
and several partitions, and not all of them have been tested, so your mileage
|
|
||||||
may vary. If something doesn't work, please submit an issue to let others know.
|
|
||||||
|
|
||||||
Dependency tree
|
Dependency tree
|
||||||
---------------
|
---------------
|
||||||
|
|
||||||
|
|
63
build.zig
63
build.zig
|
@ -34,12 +34,12 @@ pub fn build(b: *Builder) !void {
|
||||||
"no-llvm",
|
"no-llvm",
|
||||||
"Disable LLVM",
|
"Disable LLVM",
|
||||||
) orelse false;
|
) orelse false;
|
||||||
|
|
||||||
const broken_windows = b.option(
|
const broken_windows = b.option(
|
||||||
bool,
|
bool,
|
||||||
"broken-windows",
|
"broken-windows",
|
||||||
"Windows is broken in this environment (do not run Windows tests)",
|
"Windows is broken in this environment (do not run Windows tests)",
|
||||||
) orelse false;
|
) orelse false;
|
||||||
|
const no_bin = b.option(bool, "no-bin", "skip emitting binary") orelse false;
|
||||||
// TODO: Embed the current git version in the code. We can do this
|
// 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,
|
// 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
|
// grab that commit, and use b.addOptions/exe.addOptions to generate the
|
||||||
|
@ -67,17 +67,6 @@ pub fn build(b: *Builder) !void {
|
||||||
const smithy_module = smithy_dep.module("smithy");
|
const smithy_module = smithy_dep.module("smithy");
|
||||||
exe.root_module.addImport("smithy", smithy_module); // not sure this should be here...
|
exe.root_module.addImport("smithy", smithy_module); // not sure this should be here...
|
||||||
|
|
||||||
// Expose module to others
|
|
||||||
_ = b.addModule("aws", .{
|
|
||||||
.root_source_file = b.path("src/aws.zig"),
|
|
||||||
.imports = &.{.{ .name = "smithy", .module = smithy_module }},
|
|
||||||
});
|
|
||||||
|
|
||||||
// Expose module to others
|
|
||||||
_ = b.addModule("aws-signing", .{
|
|
||||||
.root_source_file = b.path("src/aws_signing.zig"),
|
|
||||||
.imports = &.{.{ .name = "smithy", .module = smithy_module }},
|
|
||||||
});
|
|
||||||
// TODO: This does not work correctly due to https://github.com/ziglang/zig/issues/16354
|
// 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
|
// We are working here with kind of a weird dependency though. So we can do this
|
||||||
|
@ -100,7 +89,6 @@ pub fn build(b: *Builder) !void {
|
||||||
const run_step = b.step("run", "Run the app");
|
const run_step = b.step("run", "Run the app");
|
||||||
run_step.dependOn(&run_cmd.step);
|
run_step.dependOn(&run_cmd.step);
|
||||||
|
|
||||||
const gen_step = blk: {
|
|
||||||
const cg = b.step("gen", "Generate zig service code from smithy models");
|
const cg = b.step("gen", "Generate zig service code from smithy models");
|
||||||
|
|
||||||
const cg_exe = b.addExecutable(.{
|
const cg_exe = b.addExecutable(.{
|
||||||
|
@ -110,8 +98,7 @@ pub fn build(b: *Builder) !void {
|
||||||
.target = b.graph.host,
|
.target = b.graph.host,
|
||||||
.optimize = if (b.verbose) .Debug else .ReleaseSafe,
|
.optimize = if (b.verbose) .Debug else .ReleaseSafe,
|
||||||
});
|
});
|
||||||
cg_exe.use_llvm = !no_llvm;
|
cg_exe.root_module.addImport("smithy", smithy_module);
|
||||||
cg_exe.root_module.addImport("smithy", smithy_dep.module("smithy"));
|
|
||||||
var cg_cmd = b.addRunArtifact(cg_exe);
|
var cg_cmd = b.addRunArtifact(cg_exe);
|
||||||
cg_cmd.addArg("--models");
|
cg_cmd.addArg("--models");
|
||||||
cg_cmd.addArg(try std.fs.path.join(
|
cg_cmd.addArg(try std.fs.path.join(
|
||||||
|
@ -122,7 +109,7 @@ pub fn build(b: *Builder) !void {
|
||||||
},
|
},
|
||||||
));
|
));
|
||||||
cg_cmd.addArg("--output");
|
cg_cmd.addArg("--output");
|
||||||
cg_cmd.addDirectoryArg(b.path("src/models"));
|
const cg_output_dir = cg_cmd.addOutputDirectoryArg("src/models");
|
||||||
if (b.verbose)
|
if (b.verbose)
|
||||||
cg_cmd.addArg("--verbose");
|
cg_cmd.addArg("--verbose");
|
||||||
// cg_cmd.step.dependOn(&fetch_step.step);
|
// cg_cmd.step.dependOn(&fetch_step.step);
|
||||||
|
@ -141,10 +128,34 @@ pub fn build(b: *Builder) !void {
|
||||||
// later about warning on manual changes...
|
// later about warning on manual changes...
|
||||||
|
|
||||||
cg.dependOn(&cg_cmd.step);
|
cg.dependOn(&cg_cmd.step);
|
||||||
break :blk cg;
|
|
||||||
};
|
|
||||||
|
|
||||||
exe.step.dependOn(gen_step);
|
exe.step.dependOn(cg);
|
||||||
|
|
||||||
|
// This allows us to have each module depend on the
|
||||||
|
// generated service manifest.
|
||||||
|
const service_manifest_module = b.createModule(.{
|
||||||
|
.root_source_file = cg_output_dir.path(b, "service_manifest.zig"),
|
||||||
|
.target = target,
|
||||||
|
.optimize = optimize,
|
||||||
|
});
|
||||||
|
service_manifest_module.addImport("smithy", smithy_module);
|
||||||
|
|
||||||
|
exe.root_module.addImport("service_manifest", service_manifest_module);
|
||||||
|
|
||||||
|
// Expose module to others
|
||||||
|
_ = b.addModule("aws", .{
|
||||||
|
.root_source_file = b.path("src/aws.zig"),
|
||||||
|
.imports = &.{
|
||||||
|
.{ .name = "smithy", .module = smithy_module },
|
||||||
|
.{ .name = "service_manifest", .module = service_manifest_module },
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
// Expose module to others
|
||||||
|
_ = b.addModule("aws-signing", .{
|
||||||
|
.root_source_file = b.path("src/aws_signing.zig"),
|
||||||
|
.imports = &.{.{ .name = "smithy", .module = smithy_module }},
|
||||||
|
});
|
||||||
|
|
||||||
// Similar to creating the run step earlier, this exposes a `test` step to
|
// 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
|
// the `zig build --help` menu, providing a way for the user to request
|
||||||
|
@ -174,8 +185,9 @@ pub fn build(b: *Builder) !void {
|
||||||
.target = b.resolveTargetQuery(t),
|
.target = b.resolveTargetQuery(t),
|
||||||
.optimize = optimize,
|
.optimize = optimize,
|
||||||
});
|
});
|
||||||
unit_tests.root_module.addImport("smithy", smithy_dep.module("smithy"));
|
unit_tests.root_module.addImport("smithy", smithy_module);
|
||||||
unit_tests.step.dependOn(gen_step);
|
unit_tests.root_module.addImport("service_manifest", service_manifest_module);
|
||||||
|
unit_tests.step.dependOn(cg);
|
||||||
unit_tests.use_llvm = !no_llvm;
|
unit_tests.use_llvm = !no_llvm;
|
||||||
|
|
||||||
const run_unit_tests = b.addRunArtifact(unit_tests);
|
const run_unit_tests = b.addRunArtifact(unit_tests);
|
||||||
|
@ -199,11 +211,16 @@ pub fn build(b: *Builder) !void {
|
||||||
.optimize = optimize,
|
.optimize = optimize,
|
||||||
});
|
});
|
||||||
smoke_test.use_llvm = !no_llvm;
|
smoke_test.use_llvm = !no_llvm;
|
||||||
smoke_test.root_module.addImport("smithy", smithy_dep.module("smithy"));
|
smoke_test.root_module.addImport("smithy", smithy_module);
|
||||||
smoke_test.step.dependOn(gen_step);
|
smoke_test.root_module.addImport("service_manifest", service_manifest_module);
|
||||||
|
smoke_test.step.dependOn(cg);
|
||||||
|
|
||||||
const run_smoke_test = b.addRunArtifact(smoke_test);
|
const run_smoke_test = b.addRunArtifact(smoke_test);
|
||||||
|
|
||||||
smoke_test_step.dependOn(&run_smoke_test.step);
|
smoke_test_step.dependOn(&run_smoke_test.step);
|
||||||
|
if (no_bin) {
|
||||||
|
b.getInstallStep().dependOn(&exe.step);
|
||||||
|
} else {
|
||||||
b.installArtifact(exe);
|
b.installArtifact(exe);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -6,6 +6,7 @@
|
||||||
"build.zig",
|
"build.zig",
|
||||||
"build.zig.zon",
|
"build.zig.zon",
|
||||||
"src",
|
"src",
|
||||||
|
"codegen",
|
||||||
"README.md",
|
"README.md",
|
||||||
"LICENSE",
|
"LICENSE",
|
||||||
},
|
},
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
const std = @import("std");
|
const std = @import("std");
|
||||||
const service_list = @import("models/service_manifest.zig");
|
const service_list = @import("service_manifest");
|
||||||
const expectEqualStrings = std.testing.expectEqualStrings;
|
const expectEqualStrings = std.testing.expectEqualStrings;
|
||||||
|
|
||||||
pub fn Services(comptime service_imports: anytype) type {
|
pub fn Services(comptime service_imports: anytype) type {
|
||||||
|
|
Loading…
Add table
Reference in a new issue