chore: update zig version
This commit is contained in:
parent
122b4151d0
commit
336d71f29f
7 changed files with 8 additions and 7 deletions
2
.github/workflows/cd.yml
vendored
2
.github/workflows/cd.yml
vendored
|
|
@ -60,7 +60,7 @@ jobs:
|
|||
- name: Setup Zig
|
||||
uses: mlugg/setup-zig@v2
|
||||
with:
|
||||
version: 0.17.0-dev.304+9787df942
|
||||
version: 0.17.0-dev.387+31f157d80
|
||||
|
||||
- name: Setup Rust
|
||||
uses: dtolnay/rust-toolchain@stable
|
||||
|
|
|
|||
4
.github/workflows/ci.yml
vendored
4
.github/workflows/ci.yml
vendored
|
|
@ -22,7 +22,7 @@ jobs:
|
|||
- name: Setup Zig
|
||||
uses: mlugg/setup-zig@v2
|
||||
with:
|
||||
version: 0.17.0-dev.304+9787df942
|
||||
version: 0.17.0-dev.387+31f157d80
|
||||
|
||||
- name: Build project
|
||||
run: zig build
|
||||
|
|
@ -55,7 +55,7 @@ jobs:
|
|||
- name: Setup Zig
|
||||
uses: mlugg/setup-zig@v2
|
||||
with:
|
||||
version: 0.17.0-dev.304+9787df942
|
||||
version: 0.17.0-dev.387+31f157d80
|
||||
|
||||
- name: Download build artifacts
|
||||
uses: actions/download-artifact@v4
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@ Temporalz provides Zig bindings to the Rust-based [temporal_rs](https://github.c
|
|||
|
||||
#### Prerequisites
|
||||
|
||||
- Zig 0.17.0-dev.304+9787df942
|
||||
- Zig 0.17.0-dev.387+31f157d80
|
||||
- Rust toolchain (only required if [prebuilt staticlibs](#prebuilt) are not available for your platform)
|
||||
|
||||
#### Add as a Dependency
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
.name = .temporalz,
|
||||
.version = "0.2.0",
|
||||
.fingerprint = 0xd8d79d59acc4faae,
|
||||
.minimum_zig_version = "0.17.0-dev.304+9787df942",
|
||||
.minimum_zig_version = "0.17.0-dev.387+31f157d80",
|
||||
.dependencies = .{
|
||||
.temporal = .{
|
||||
.path = "pkg/temporal",
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
.name = .temporalz_example,
|
||||
.version = "0.1.2",
|
||||
.fingerprint = 0x686c9dfc777f9593,
|
||||
.minimum_zig_version = "0.17.0-dev.304+9787df942",
|
||||
.minimum_zig_version = "0.17.0-dev.387+31f157d80",
|
||||
.dependencies = .{
|
||||
.temporalz = .{
|
||||
.path = "../",
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
.name = .temporal,
|
||||
.version = "0.2.0",
|
||||
.fingerprint = 0xd5dcf3f41df6b117,
|
||||
.minimum_zig_version = "0.17.0-dev.304+9787df942",
|
||||
.minimum_zig_version = "0.17.0-dev.387+31f157d80",
|
||||
.dependencies = .{
|
||||
.temporal_rs = .{
|
||||
.url = "git+https://github.com/boa-dev/temporal?ref=v0.2.3#c003cc92325e19b26f8ee2f85e4a47d98cbcc781",
|
||||
|
|
|
|||
|
|
@ -31,6 +31,7 @@ pub fn main(init: std.process.Init) !void {
|
|||
|
||||
const env = Env.init(allocator, init.minimal.environ);
|
||||
defer env.deinit(allocator);
|
||||
std.testing.environ = env.environ;
|
||||
|
||||
var slowest = SlowTracker.init(allocator, io, 15);
|
||||
defer slowest.deinit(allocator);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue