Commit graph

479 commits

Author SHA1 Message Date
3e89ec468a
utf16leToUtf8 -> utf16LeToUtf8 (capital L) 2024-07-01 14:18:40 -07:00
d84246333c
update smithy dependency 2024-07-01 14:03:59 -07:00
f558b058e1
use explicit splitScalar 2024-07-01 13:45:29 -07:00
e665b94683
badges use branch of the workflow, not branch of the code 2024-07-01 13:08:48 -07:00
dd6a87a034
CrossTarget -> std.Target.Query 2024-07-01 12:55:49 -07:00
61592f039d
fix license in build.zig.zon 2024-06-08 10:17:40 -07:00
c8f625068d
upgrade github workflow 2024-06-07 08:40:44 -07:00
ffbbf21303
upgrade to zig 0.13.0 2024-06-07 08:26:56 -07:00
a659c99350
re-enable windows test for 0.13/LLVM 18, update README 2024-06-04 17:34:33 -07:00
981d5579f1
update to compatible package version 2024-06-04 17:04:11 -07:00
3307eb6b8f
update mach/nightly jobs to disambiguate package versions 2024-06-04 16:58:28 -07:00
332aa1a855
update example to zig 0.13-dev.365 (zig nominated build 2024.05) 2024-06-04 16:35:52 -07:00
7d80f42a3e
update to zig 0.13-dev.365 (zig nominated build 2024.05) 2024-06-04 14:53:09 -07:00
be9a52ed6a
update readme, mostly remove TLS 1.3 warning/update mach nominated 2024-06-04 14:23:31 -07:00
e847af6d4c
update build badges to use Gitea 1.22.0 built-in badges 2024-05-30 13:28:39 -07:00
c60c40f627
we are not mutating headers, so do not ask for mutable headers 2024-05-15 13:47:33 -07:00
c40539b7b0
remove "zig" from package name 2024-05-15 13:19:46 -07:00
007f2f588a
switch to setup-zig for other builds/schedule nightly 2024-04-29 09:48:24 -07:00
dc5f040a2f
use setup-zig action in main build 2024-04-29 09:42:15 -07:00
3887e630d6
turn off schedule for github actions (should only apply to gitea) 2024-04-29 09:38:17 -07:00
c825ef72fe
disable windows tests on github 2024-04-23 08:55:56 -07:00
52a5865caa
github actions: update checkout version/identifiers 2024-04-23 08:32:54 -07:00
bf4097cd5b
add latest major zig version status to README 2024-04-23 08:28:24 -07:00
18d8258eaf
pin nightly/nominated zig workflows to zig-develop branch 2024-04-23 08:07:10 -07:00
b49bb9ad90
update build.zig.zon to latest package 2024-04-22 14:13:21 -07:00
a0773971f2
change format of published tar file 2024-04-22 13:57:36 -07:00
484b504090
add paths to build.zig.zon 2024-04-22 09:17:10 -07:00
45e87cf202
move example build to the end so we still get a package 2024-04-22 08:27:21 -07:00
99a61c0bd2
update aws-zig to zig 0.12.0 (example will still fail) 2024-04-22 08:23:01 -07:00
b2c8fc5f3c
update README for riscv64 situation 2024-04-02 18:41:26 -07:00
62973bf4bf
update example 2024-04-02 18:30:27 -07:00
2f5f9edb36
markdown adjustment on README 2024-04-02 18:20:37 -07:00
b1b2a6cc7a
add example build at the end so we have models to use for the sample 2024-04-02 18:00:08 -07:00
e74a0e9456
get build LLVM-approved (riscv64-linux disabled for now) 2024-04-02 17:49:45 -07:00
723e0b0989
add commented out "normal test" pattern 2024-04-02 17:47:50 -07:00
a3117eea54
update name of build job to what it actually does 2024-04-02 13:00:13 -07:00
afdc75c1c6
stop the zig build DOS attack on the CI infrastructure 2024-04-02 12:54:01 -07:00
e6634d3c0f
shell32 has been removed, use USERPROFILE env var instead 2024-04-02 11:05:17 -07:00
57e994f80f
upgrade to working smithy 2024-04-02 11:04:40 -07:00
d46cb9c28b
update smithy 2024-04-02 10:26:33 -07:00
7dcf3d3a2e
upgrade to nominated zig 2024.3.0-mach (0.12.0-dev.3180+83e578a18)
There were significant changes to the way HTTP operates since 0.11,
effecting client operations, but more substantially, the server
implementation, which effected the test harness.

std.http.Headers was removed, including the getFirstValue function, which
needed to be replicated. On the plus side, a std.http.Header struct was
added, identical to our own structure, so I have removed out own header
in favor of stdlib.

On the Http client side, I have switched to use the fetch API. Proxy
support is built in, but we are using (mostly) our own implementation
for now, with the remaining conversion left as a TODO item. Raw URIs are
now supported, so the workaround for issue 17015 has been removed. Large
payloads should also be fixed, but this has not been tested.

The standard library now adds the content-length header
(unconditionally), which is a decision of dubious nature. I have removed
the addition of content-length, which also means it is not present
during signing. This should be allowed.

Dependency loop on fieldTransformer was fixed. This should have been
a problem on zig 0.11, but was not. This effected the API for the json
parsing, but we were not using that. At the call site, these did not
need to be specified as references.

With the http server no longer doing all the allocations it once was,
the test harness now has a lot more allocations to perform. To alleviate
the bookeeping, this was moved to an Arena allocator. The client,
which is really what is under test, continues to use the allocator
passed.
2024-04-02 09:27:42 -07:00
d442671275
upgrade zig build gen build command to zig 0.12
This removes the copied Package.zig as we can now use the actual package
manager and look at our available dependencies in build.zig. This may
break again later as I believe lazy dependencies are planned, which will
have us search for a solution to tell the build system we're expecting
this dependency.
2024-03-30 15:26:24 -07:00
213627c305
update README to latest zig nominated 2024-03-30 08:25:50 -07:00
47ab9f6064
update service list, add S3 back 2024-03-30 08:25:21 -07:00
866a89d8ae
add sudo to actions 2024-03-30 08:17:59 -07:00
b8df9e3610
attempt to address github action complaints 2024-03-30 08:17:59 -07:00
d1d0b294d7
seperate github workflows 2024-03-30 08:17:58 -07:00
8a80cbda4a
Action incompatibility across gitea/github makes this a bit too tough rn 2024-03-30 08:17:57 -07:00
444173afd2
rename jobs 2024-03-30 08:17:56 -07:00
b6cdb6f7a7
move workflow actions to .github for use on both platforms 2024-03-30 08:17:56 -07:00