From 24e3da82beb25c9b5a99ca0e6bd3fea2ef6110ce Mon Sep 17 00:00:00 2001 From: Anton-4 <17049058+Anton-4@users.noreply.github.com> Date: Mon, 25 Sep 2023 16:31:22 +0200 Subject: [PATCH] different approach --- .github/workflows/ubuntu_x86_64.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ubuntu_x86_64.yml b/.github/workflows/ubuntu_x86_64.yml index 81ee2a488a..37826761be 100644 --- a/.github/workflows/ubuntu_x86_64.yml +++ b/.github/workflows/ubuntu_x86_64.yml @@ -24,9 +24,10 @@ jobs: - name: Check for duplicate AUTHORS run: diff <(sort AUTHORS) <(sort AUTHORS | uniq) # The < operator treats a string as a file. diff 'succeeds' if no difference. - - run: | - zig version - $ROC_ZIG version + # make sure we use zig 11 + - run: echo /home/small-ci-user/Downloads/zig-linux-x86_64-0.11.0/ >> GITHUB_PATH + + - run: zig version - name: zig fmt check, zig tests run: cd crates/compiler/builtins/bitcode && ./run-tests.sh