Skip to content

Commit

Permalink
stage2 is the zig default now but we can't use it yet
Browse files Browse the repository at this point in the history
  • Loading branch information
nektro committed Aug 27, 2022
1 parent 6a2d664 commit bf9b04a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: Setup Zig
uses: goto-bus-stop/setup-zig@v1
with:
version: "0.10.0-dev.3316+a0d3a87ce"
version: "0.10.0-dev.3685+dae7aeb33"

- run: zig version
- run: zig env
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Setup Zig
uses: goto-bus-stop/setup-zig@v1
with:
version: "0.10.0-dev.3316+a0d3a87ce"
version: "0.10.0-dev.3685+dae7aeb33"

- run: zig version
- run: zig env
Expand Down
1 change: 1 addition & 0 deletions build.zig
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ const deps = @import("./deps.zig");

pub fn build(b: *std.build.Builder) void {
b.prominent_compile_errors = true;
b.use_stage1 = true; // currently blocked on https://github.com/ziglang/zig/issues/12403
const target = b.standardTargetOptions(.{});

b.setPreferredReleaseMode(.ReleaseSafe);
Expand Down

0 comments on commit bf9b04a

Please sign in to comment.