diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2020-01-01 10:52:53 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2020-01-01 15:11:20 -0800 |
commit | 5584574062eafdd99deca63689b30a5fa977e999 (patch) | |
tree | 999778c137dd102f4b8a4e12cfca6bf33c56f663 /.github/workflows/linux-bionic-5.9.yml | |
parent | 06de2a91ce80ae2af10d82ee9c63f4141aca50b6 (diff) | |
download | subsurface-5584574062eafdd99deca63689b30a5fa977e999.tar.gz |
GitHub Actions: better grouping of test steps
This is a bit more convoluted to do inside of the Ubuntu 19.10 container, but
at least for Ubuntu 14.04 and for Mac this will be an improvement.
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 | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/.github/workflows/linux-bionic-5.9.yml b/.github/workflows/linux-bionic-5.9.yml index ac7050632..c0cba7b49 100644 --- a/.github/workflows/linux-bionic-5.9.yml +++ b/.github/workflows/linux-bionic-5.9.yml @@ -29,15 +29,18 @@ jobs: qtpositioning5-dev qtscript5-dev qttools5-dev qttools5-dev-tools \ qtquickcontrols2-5-dev xvfb - - name: run build + - name: build Subsurface + run: | + cd .. + bash -x subsurface/scripts/build.sh -desktop -build-with-webkit + + - name: test desktop build env: SSRF_USER_EMAIL: ssrftest-u18@hohndel.org SSRF_USER_PASSWORD: ${{ secrets.cloudu18 }} 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 + cd build xvfb-run --auto-servernum make check |