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

ci: build examples with prebuilt V binaries

This commit is contained in:
Alexander Medvednikov 2019-12-03 17:34:48 +03:00
parent f192429c8a
commit 89d40566f4

View File

@ -81,7 +81,7 @@ jobs:
- name: Download V
run: wget https://github.com/vbinaries/vbinaries/releases/download/latest/v_linux.zip && unzip v_linux.zip && ./v --version
- name: Test V
run: ./v examples/hello_world.v && examples/hello_world
run: ./v examples/hello_world.v && examples/hello_world && ./v build-examples
macos-prebuilt:
@ -90,7 +90,7 @@ jobs:
- name: Download V
run: wget https://github.com/vbinaries/vbinaries/releases/download/latest/v_macos.zip && unzip v_macos.zip && ./v --version
- name: Test V
run: ./v examples/hello_world.v && examples/hello_world
run: ./v examples/hello_world.v && examples/hello_world && ./v build-examples
windows-prebuilt:
runs-on: windows-2019