ci: test windows package
parent
ae171ec28e
commit
43d0199604
|
@ -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:
|
||||
|
|
Loading…
Reference in New Issue