From a5452fd8c4479e53f0a9d0866874b44e5aae35a5 Mon Sep 17 00:00:00 2001 From: Jimmi Holst Christensen Date: Fri, 9 Dec 2022 10:49:54 +0100 Subject: Update to newest version of zig --- .github/workflows/main.yml | 1 - build.zig | 2 -- 2 files changed, 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index eb6d82d..6db22b7 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -11,7 +11,6 @@ jobs: matrix: os: [ubuntu-latest, windows-latest] step: [examples, test] - compiler: [stage1=true, stage1=false] release: [release-safe=false, release-safe=true, release-fast=true, release-small=true] runs-on: ${{matrix.os}} steps: diff --git a/build.zig b/build.zig index 6a128f2..8362715 100644 --- a/build.zig +++ b/build.zig @@ -5,13 +5,11 @@ const Builder = std.build.Builder; pub fn build(b: *Builder) void { const mode = b.standardReleaseOptions(); const target = b.standardTargetOptions(.{}); - const stage1 = b.option(bool, "stage1", "Use the stage 1 compiler") orelse false; const test_step = b.step("test", "Run all tests in all modes."); const tests = b.addTest("clap.zig"); tests.setBuildMode(mode); tests.setTarget(target); - tests.use_stage1 = stage1; test_step.dependOn(&tests.step); const example_step = b.step("examples", "Build examples"); -- cgit v1.2.3