diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2020-11-12 11:18:02 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2020-11-12 11:19:55 -0800 |
commit | 6d93a14d18923480390e6cd04b3a1542f75480ea (patch) | |
tree | 559855ed5d49fc94b48bdefd97dd3ee551ebf845 /.github/workflows/mac.yml | |
parent | 69e7baf68216efc8bb6a06211570dd5185e6d8f3 (diff) | |
download | subsurface-6d93a14d18923480390e6cd04b3a1542f75480ea.tar.gz |
build-system: giving up on TestGitStorage
It is completely incomprehensible why these fail. And why randomly restarting
sometimes fixes them, and often doesn't. At this point there is no incremental
value in having this test. If it were to ever catch a real bug, we wouldn't
realize it because we are too well trained to ignore the problem.
Very disappointing, but IMHO the right thing to do.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to '.github/workflows/mac.yml')
-rw-r--r-- | .github/workflows/mac.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/mac.yml b/.github/workflows/mac.yml index 7904471ec..512ed76ab 100644 --- a/.github/workflows/mac.yml +++ b/.github/workflows/mac.yml @@ -39,7 +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 + # ./TestGitStorage -v2 make check - name: build Subsurface @@ -66,6 +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 + # ./TestGitStorage -v2 make check |