From 56421beb8a665c346c6725ce84b0c8c3786179c6 Mon Sep 17 00:00:00 2001 From: Alexander Medvednikov Date: Wed, 8 Jan 2020 17:23:34 +0100 Subject: [PATCH] ci.yml: small windows fix --- .github/workflows/ci.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f98cc30509..087ac62cb2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -167,15 +167,16 @@ jobs: run: | echo "Downloading v.exe..." curl -L https://github.com/vbinaries/vbinaries/releases/download/latest/v_windows.zip -o v_windows.zip - ls echo "Unzipping..." unzip v_windows.zip ./v.exe --version echo "Done" + ls - name: Test V run: | - ./v.exe examples/hello_world.v - examples/hello_world.exe + ./v.exe -o hi.exe examples/hello_world.v + ls + ./hi.exe ./v.exe build-examples ubuntu-musl: