diff options
author | Ben Boeckel <ben.boeckel@kitware.com> | 2020-06-12 15:05:01 (GMT) |
---|---|---|
committer | Ben Boeckel <ben.boeckel@kitware.com> | 2020-06-12 15:23:36 (GMT) |
commit | 0f4777ab810d87619945583ca504d49703acc0c4 (patch) | |
tree | 518c02c3e6faf7a50f27b0d11e35c70750949f9e /.gitlab/ci | |
parent | 77b44ed4bab41d10b975a273b267210037318265 (diff) | |
download | CMake-0f4777ab810d87619945583ca504d49703acc0c4.zip CMake-0f4777ab810d87619945583ca504d49703acc0c4.tar.gz CMake-0f4777ab810d87619945583ca504d49703acc0c4.tar.bz2 |
ci: don't test BundleGeneratorTest
This test uses shared global resources and doesn't work well with the CI
infrastructure we have. It is tested by nightly builders however.
Diffstat (limited to '.gitlab/ci')
-rw-r--r-- | .gitlab/ci/ctest_exclusions.cmake | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/.gitlab/ci/ctest_exclusions.cmake b/.gitlab/ci/ctest_exclusions.cmake index eb9b724..b885a6a 100644 --- a/.gitlab/ci/ctest_exclusions.cmake +++ b/.gitlab/ci/ctest_exclusions.cmake @@ -1,4 +1,7 @@ set(test_exclusions + # This test hits global resources and can be handled by nightly testing. + # https://gitlab.kitware.com/cmake/cmake/-/merge_requests/4769 + "^BundleGeneratorTest$" ) if (CTEST_CMAKE_GENERATOR MATCHES "Visual Studio") |