From 776c57a4785a5d43a421ddd0a6ab48f6ac6a1c6c Mon Sep 17 00:00:00 2001 From: Delyan Angelov Date: Mon, 1 Jun 2020 19:29:49 +0300 Subject: [PATCH] ci: disable ui examples job for macos too --- .github/workflows/ci.yml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9c0f184a36..9436364939 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -102,22 +102,22 @@ jobs: ## run: ./v -o hi.js examples/hello_v_js.v && node hi.js - name: Test symlink run: ./v symlink && v -o v2 cmd/v + - name: Fixed tests + run: ./v test-fixed # - name: Test vsh # run: ./v examples/v_script.vsh ## - name: Test vid ## run: | ## git clone --depth 1 https://github.com/vlang/vid.git ## cd vid && ../v -o vid . - - name: Fixed tests - run: ./v test-fixed - - 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 ubuntu: runs-on: ubuntu-18.04