From ab7a79cb909b903cdbfe1ca178b9c41b18f35b81 Mon Sep 17 00:00:00 2001 From: Alexey Date: Wed, 12 Feb 2020 19:34:11 +0300 Subject: [PATCH] ci: fix complilation in periodic workflow --- .github/workflows/periodic.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/periodic.yml b/.github/workflows/periodic.yml index 93324e7e4d..4c8c222bad 100644 --- a/.github/workflows/periodic.yml +++ b/.github/workflows/periodic.yml @@ -41,9 +41,9 @@ jobs: brew install freetype glfw openssl postgres sdl2 sdl2_ttf sdl2_mixer sdl2_image export LIBRARY_PATH="$LIBRARY_PATH:/usr/local/opt/openssl/lib/" - name: Build V - run: make -j4 && ./v -cg -o v v.v + run: make -j4 && ./v -cg -o v cmd/v - name: Build V using V - run: ./v -o v2 v.v && ./v2 -o v3 v.v + run: ./v -o v2 cmd/v && ./v2 -o v3 cmd/v - name: Test symlink run: sudo ./v symlink - name: Set up pg database