chore: upgrade Zig version to 0.16.0
This commit is contained in:
parent
ead7722fd9
commit
6520d21087
8 changed files with 9 additions and 9 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.16.0-dev.3153+d6f43caad
|
||||
version: 0.16.0
|
||||
|
||||
- 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.16.0-dev.3153+d6f43caad
|
||||
version: 0.16.0
|
||||
|
||||
- name: Build project
|
||||
run: zig build
|
||||
|
|
@ -55,7 +55,7 @@ jobs:
|
|||
- name: Setup Zig
|
||||
uses: mlugg/setup-zig@v2
|
||||
with:
|
||||
version: 0.16.0-dev.3153+d6f43caad
|
||||
version: 0.16.0
|
||||
|
||||
- name: Download build artifacts
|
||||
uses: actions/download-artifact@v4
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
zig master
|
||||
zig 0.16.0
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@ Temporalz provides Zig bindings to the Rust-based [temporal_rs](https://github.c
|
|||
|
||||
#### Prerequisites
|
||||
|
||||
- Zig 0.16.0-dev.3153+d6f43caad
|
||||
- Zig 0.16.0
|
||||
- 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.16.0-dev.3153+d6f43caad",
|
||||
.minimum_zig_version = "0.16.0",
|
||||
.dependencies = .{
|
||||
.temporal = .{
|
||||
.path = "pkg/temporal",
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
.name = .temporalz_example,
|
||||
.version = "0.1.2",
|
||||
.fingerprint = 0x686c9dfc777f9593,
|
||||
.minimum_zig_version = "0.16.0-dev.3153+d6f43caad",
|
||||
.minimum_zig_version = "0.16.0",
|
||||
.dependencies = .{
|
||||
.temporalz = .{
|
||||
.path = "../",
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
.name = .temporal,
|
||||
.version = "0.2.0",
|
||||
.fingerprint = 0xd5dcf3f41df6b117,
|
||||
.minimum_zig_version = "0.16.0-dev.2565+684032671",
|
||||
.minimum_zig_version = "0.16.0",
|
||||
.dependencies = .{
|
||||
.temporal_rs = .{
|
||||
.url = "git+https://github.com/boa-dev/temporal?ref=v0.2.0#ad01ef6f6147345f35a6614bf942a83af14098dd",
|
||||
|
|
|
|||
|
|
@ -149,7 +149,7 @@ pub fn main(init: std.process.Init) !void {
|
|||
Printer.status(.fail, "\n{s}\n\"{s}\" - {s}\n{s}\n", .{ BORDER, friendly_name, @errorName(err), BORDER });
|
||||
}
|
||||
if (@errorReturnTrace()) |trace| {
|
||||
std.debug.dumpStackTrace(trace);
|
||||
std.debug.dumpErrorReturnTrace(trace);
|
||||
}
|
||||
if (env.fail_first) {
|
||||
break;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue