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

ci: test windows package

This commit is contained in:
Alexander Medvednikov 2019-11-29 19:47:57 +03:00
parent ae171ec28e
commit 43d0199604

View File

@ -75,7 +75,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 test v
run: ./v examples/hello_world.v && examples/hello_world
macos-prebuilt:
@ -84,7 +84,15 @@ 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 test v
run: ./v examples/hello_world.v && examples/hello_world
windows-prebuilt:
runs-on: windows-2019
steps:
- name: Download V
run: wget https://github.com/vbinaries/vbinaries/releases/download/latest/v_windows.zip && unzip v_windows.zip && ./v.exe --version
- name: Test V
run: ./v.exe examples/hello_world.v && examples/hello_world.exe
ubuntu-tcc: