From 66e1d8a19af868c77fccc3d1f18ff07e3485e4a9 Mon Sep 17 00:00:00 2001 From: czapek1337 <32851089+czapek1337@users.noreply.github.com> Date: Fri, 1 Sep 2023 03:12:15 +0200 Subject: [PATCH] ci: Make sure to build the bootstrap compiler first... --- .github/workflows/test.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 63513f2..2166241 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -11,9 +11,11 @@ jobs: wget https://ziglang.org/builds/zig-linux-x86_64-0.11.0-dev.3970+7a8002a5c.tar.xz tar xf zig-linux-x86_64-0.11.0-dev.3970+7a8002a5c.tar.xz mv zig-linux-x86_64-0.11.0-dev.3970+7a8002a5c zig + - name: Build the bootstrap compiler + run: zig build - name: Run the test cases run: ./tests.sh - - name: Build self-hosted compiler + - name: Build the self-hosted compiler run: zig/zig build run -- selfhost/main.n - name: Disassemble the built binary run: objdump -d -M intel a.out