ci: build V using V

pull/2229/head
Alexander Medvednikov 2019-10-04 17:30:47 +03:00
parent 433e69e560
commit 0525e6f76a
1 changed files with 3 additions and 1 deletions

View File

@ -13,8 +13,10 @@ jobs:
run: | run: |
brew install freetype glfw openssl brew install freetype glfw openssl
export LIBRARY_PATH="$LIBRARY_PATH:/usr/local/opt/openssl/lib/" export LIBRARY_PATH="$LIBRARY_PATH:/usr/local/opt/openssl/lib/"
- name: Build v - name: Build V
run: make && ./v -o v compiler run: make && ./v -o v compiler
- name: Build V using V
run: ./v -o v2 compiler && ./v2 -o v3 compiler
- name: Test v->c - name: Test v->c
run: ./v test v run: ./v test v
- name: Test v->js - name: Test v->js