From 6081e0d60279381413a613ef9820f0e70f99c073 Mon Sep 17 00:00:00 2001 From: Alexander Medvednikov Date: Thu, 4 Jun 2020 12:28:03 +0200 Subject: [PATCH] ci: bring back v ui build --- .github/workflows/ci.yml | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6dca8668c3..830ab6e45a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -112,14 +112,15 @@ jobs: ## run: | ## git clone --depth 1 https://github.com/vlang/vid.git ## cd vid && ../v -o vid . -## - name: Build V UI examples -## run: | -## git clone --depth 1 https://github.com/vlang/ui -## cd ui -## mkdir -p ~/.vmodules -## ln -s $(pwd) ~/.vmodules/ui -## ../v examples/rectangles.v -## ../v examples/users.v + - name: Build V UI examples + run: | + git clone --depth 1 https://github.com/vlang/ui + cd ui + mkdir -p ~/.vmodules + ln -s $(pwd) ~/.vmodules/ui + ../v examples/rectangles.v + ../v examples/users.v + ../v examples/calculator.v ubuntu: runs-on: ubuntu-18.04