1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

ci: build V using V

This commit is contained in:
Alexander Medvednikov 2019-10-04 17:30:47 +03:00
parent 433e69e560
commit 0525e6f76a

View File

@ -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