From 34002c7c220ce401a97a9d1b38cb6e3cfb0d1285 Mon Sep 17 00:00:00 2001 From: Delyan Angelov Date: Tue, 23 Feb 2021 18:01:20 +0200 Subject: [PATCH] ci: add vex-compiles job --- .github/workflows/ci.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f069715086..20f85439ce 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -858,6 +858,21 @@ jobs: ../v -autofree . cd .. + vex-compiles: + runs-on: ubuntu-20.04 + steps: + - uses: actions/checkout@v2 + - name: Install dependencies + run: sudo apt-get install --quiet -y libssl-dev sqlite3 libsqlite3-dev + - name: Build V + run: make + - name: Install Vex + run: ./v install nedpals.vex + - name: Compile the simple Vex example + run: ./v ~/.vmodules/nedpals/vex/examples/simple_example.v + - name: Run Vex Tests + run: ./v test ~/.vmodules/nedpals/vex + parser-silent: name: Parser silent mode runs-on: ubuntu-20.04