diff options
-rw-r--r-- | .github/workflows/linux-tumbleweed-qt-latest.yml | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/.github/workflows/linux-tumbleweed-qt-latest.yml b/.github/workflows/linux-tumbleweed-qt-latest.yml index b7e6fec41..a533412b5 100644 --- a/.github/workflows/linux-tumbleweed-qt-latest.yml +++ b/.github/workflows/linux-tumbleweed-qt-latest.yml @@ -35,11 +35,14 @@ jobs: - name: build Subsurface run: | echo "--------------------------------------------------------------" - echo "building desktop" + echo "building all three binaries" - # now build for the desktop version (including WebKit) + # now build the desktop version (including WebKit), mobile and downloader + # the mobile build needs git setup to apply the Kirigami changes + git config --global user.email "ci@subsurface-divelog.org" + git config --global user.name "Subsurface CI" cd .. - bash -e -x subsurface/scripts/build.sh -desktop -build-with-webkit + bash -e -x subsurface/scripts/build.sh -all -build-with-webkit # let's not run the tests... to do that, we need to install 'xvfb-run' above # - name: test desktop build |