From 43d019960401c9db44592ddd720fe23dca785147 Mon Sep 17 00:00:00 2001 From: Alexander Medvednikov Date: Fri, 29 Nov 2019 19:47:57 +0300 Subject: [PATCH] ci: test windows package --- .github/workflows/ci.yml | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 658465ca6c..2980e21e06 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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: