diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2019-12-27 11:21:09 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2019-12-30 17:41:07 -0800 |
commit | f788311b298abd4190e2ae98204171d8e05d11d8 (patch) | |
tree | 7a66224b81bcc95360dec5a27fff01a1e2e2ce9c /.github/workflows/linux-bionic-5.9.yml | |
parent | c2ccbe1f63769446cb15a3f3ef49d688dc04b646 (diff) | |
download | subsurface-f788311b298abd4190e2ae98204171d8e05d11d8.tar.gz |
GitHub Actions: run the tests on Mac and Ubuntu 18.04/Qt 5.9 desktop
We lost running the tests when migrating to GitHub Actions...
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to '.github/workflows/linux-bionic-5.9.yml')
-rw-r--r-- | .github/workflows/linux-bionic-5.9.yml | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/.github/workflows/linux-bionic-5.9.yml b/.github/workflows/linux-bionic-5.9.yml index d82a9b3ad..a1710ffbb 100644 --- a/.github/workflows/linux-bionic-5.9.yml +++ b/.github/workflows/linux-bionic-5.9.yml @@ -27,9 +27,14 @@ jobs: qml-module-qtquick2 qt5-default qt5-qmake qtchooser qtconnectivity5-dev \ qtdeclarative5-dev qtdeclarative5-private-dev qtlocation5-dev \ qtpositioning5-dev qtscript5-dev qttools5-dev qttools5-dev-tools \ - qtquickcontrols2-5-dev + qtquickcontrols2-5-dev xvfb - name: run build run: | cd .. bash -x subsurface/scripts/build.sh -desktop -build-with-webkit + # and now run the tests - with Qt 5.9 we can only run the desktop flavor + echo "------------------------------------" + echo "run tests" + cd subsurface/build + xvfb-run --auto-servernum make check |