diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2020-10-24 10:28:19 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2020-10-24 15:22:37 -0700 |
commit | 7068e64e497fa04fd801f41f4e5b00f7911fd485 (patch) | |
tree | 3f86e2b26269e66afe57c693a81dfb22a09449b5 | |
parent | 1211520ca939e53d6880e213dd38053a08b9589e (diff) | |
download | subsurface-7068e64e497fa04fd801f41f4e5b00f7911fd485.tar.gz |
test: manually run gitStorageTest
This way we should see the output and hopefully be able to figure
out why that silly test keeps randomly failing.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
-rw-r--r-- | .github/workflows/linux-bionic-5.9.yml | 3 | ||||
-rw-r--r-- | .github/workflows/linux-eoan-5.12.yml | 6 | ||||
-rw-r--r-- | .github/workflows/linux-groovy-5.14.yml | 6 | ||||
-rw-r--r-- | .github/workflows/mac.yml | 2 |
4 files changed, 12 insertions, 5 deletions
diff --git a/.github/workflows/linux-bionic-5.9.yml b/.github/workflows/linux-bionic-5.9.yml index bdfb71600..fe17c47a3 100644 --- a/.github/workflows/linux-bionic-5.9.yml +++ b/.github/workflows/linux-bionic-5.9.yml @@ -41,5 +41,6 @@ jobs: # and now run the tests - with Qt 5.9 we can only run the desktop flavor echo "------------------------------------" echo "run tests" - cd build + cd build/tests + xvfb-run --auto-servernum ./TestGitStorage -v2 xvfb-run --auto-servernum make check diff --git a/.github/workflows/linux-eoan-5.12.yml b/.github/workflows/linux-eoan-5.12.yml index 68be79ce3..be60de01e 100644 --- a/.github/workflows/linux-eoan-5.12.yml +++ b/.github/workflows/linux-eoan-5.12.yml @@ -48,7 +48,8 @@ jobs: echo "--------------------------------------------------------------" echo "running tests for mobile" - cd build-mobile + cd build-mobile/tests + xvfb-run --auto-servernum ./TestGitStorage -v2 xvfb-run --auto-servernum make check - name: build Subsurface @@ -64,6 +65,7 @@ jobs: run: | echo "--------------------------------------------------------------" echo "running tests for desktop" - cd build + cd build/tests + xvfb-run --auto-servernum ./TestGitStorage -v2 xvfb-run --auto-servernum make check diff --git a/.github/workflows/linux-groovy-5.14.yml b/.github/workflows/linux-groovy-5.14.yml index f79467262..29da8bb17 100644 --- a/.github/workflows/linux-groovy-5.14.yml +++ b/.github/workflows/linux-groovy-5.14.yml @@ -48,7 +48,8 @@ jobs: echo "--------------------------------------------------------------" echo "running tests for mobile" - cd build-mobile + cd build-mobile/tests + xvfb-run --auto-servernum ./TestGitStorage -v2 xvfb-run --auto-servernum make check - name: build Subsurface @@ -64,6 +65,7 @@ jobs: run: | echo "--------------------------------------------------------------" echo "running tests for desktop" - cd build + cd build/tests + xvfb-run --auto-servernum ./TestGitStorage -v2 xvfb-run --auto-servernum make check diff --git a/.github/workflows/mac.yml b/.github/workflows/mac.yml index af1a5d539..2a330c6d0 100644 --- a/.github/workflows/mac.yml +++ b/.github/workflows/mac.yml @@ -39,6 +39,7 @@ jobs: export QT_ROOT=${GITHUB_WORKSPACE}/Qt/5.13.0/clang_64 export QT_QPA_PLATFORM_PLUGIN_PATH=$QT_ROOT/plugins cd ${GITHUB_WORKSPACE}/build-mobile/tests + ./TestGitStorage -v2 make check - name: build Subsurface @@ -65,5 +66,6 @@ jobs: export QT_ROOT=${GITHUB_WORKSPACE}/Qt/5.13.0/clang_64 export QT_QPA_PLATFORM_PLUGIN_PATH=$QT_ROOT/plugins cd ${GITHUB_WORKSPACE}/build/tests + ./TestGitStorage -v2 make check |