From 0525e6f76ad26667697c009dcd4b569678f5831b Mon Sep 17 00:00:00 2001 From: Alexander Medvednikov Date: Fri, 4 Oct 2019 17:30:47 +0300 Subject: [PATCH] ci: build V using V --- .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 c969b79ed7..ef125b0bfa 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,8 +13,10 @@ jobs: run: | brew install freetype glfw openssl export LIBRARY_PATH="$LIBRARY_PATH:/usr/local/opt/openssl/lib/" - - name: Build v + - name: Build V run: make && ./v -o v compiler + - name: Build V using V + run: ./v -o v2 compiler && ./v2 -o v3 compiler - name: Test v->c run: ./v test v - name: Test v->js