From e0be3f6f1b7b738e2854616e0c56823656abc361 Mon Sep 17 00:00:00 2001 From: amai2012 Date: Sun, 3 May 2020 10:10:39 +0200 Subject: [PATCH] CI: Build GUI on ubuntu (#2626) --- .github/workflows/CI-unixish.yml | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/.github/workflows/CI-unixish.yml b/.github/workflows/CI-unixish.yml index a86c2bc8b..0580620b0 100644 --- a/.github/workflows/CI-unixish.yml +++ b/.github/workflows/CI-unixish.yml @@ -28,6 +28,12 @@ jobs: if: matrix.os == 'macos-latest' run: | brew install z3 + + - name: Install Qt + if: matrix.os == 'ubuntu-latest' + uses: jurplel/install-qt-action@v2 + with: + modules: 'qtcharts' - name: Build cppcheck run: | @@ -37,7 +43,7 @@ jobs: run: | make -j2 testrunner USE_Z3=yes HAVE_RULES=yes - - name: Test + - name: Run test run: | make -j2 check USE_Z3=yes HAVE_RULES=yes @@ -45,3 +51,10 @@ jobs: run: | make validateCFG make validatePlatforms + + - name: Build GUI on ubuntu + if: matrix.os == 'ubuntu-latest' + run: | + pushd gui + qmake HAVE_QCHART=yes + make -j2