From 956c605934df0c10deebb35b36cb1f487051ad6b Mon Sep 17 00:00:00 2001 From: Alexander Medvednikov Date: Fri, 22 Nov 2019 14:39:04 +0300 Subject: [PATCH] ci: test x64 machine codegen --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d6959192a7..a3075e203f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -44,7 +44,9 @@ jobs: # - name: Test v->js # run: ./v -o hi.js examples/hello_v_js.v && node hi.js - name: Bare metal - run: ./v -bare -o bare vlib/os/bare/bare_example_linux.v + run: ./v -freestanding -o bare vlib/os/bare/bare_example_linux.v + - name: x64 machine code generation + run: ./v -x64 examples/x64/hello_world.v build-ubuntu-tcc: runs-on: ubuntu-18.04