From 39adc984a88aee633359763fe8d007bdbe5083d9 Mon Sep 17 00:00:00 2001 From: Alexander Medvednikov Date: Fri, 22 Nov 2019 19:58:28 +0300 Subject: [PATCH] ci: actually fix x64 --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e39d33d7f4..00de52a521 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -46,7 +46,7 @@ jobs: - name: Bare metal run: ./v -freestanding -o bare vlib/os/bare/bare_example_linux.v - name: x64 machine code generation - run: cd examples/x64 && ../v -x64 hello_world.v && ./hello_world + run: cd examples/x64 && ../../v -x64 hello_world.v && ./hello_world build-ubuntu-tcc: runs-on: ubuntu-18.04