Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ned14/llfio.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNiall Douglas (s [underscore] sourceforge {at} nedprod [dot] com) <spamtrap@nedprod.com>2021-12-03 20:55:35 +0300
committerNiall Douglas (s [underscore] sourceforge {at} nedprod [dot] com) <spamtrap@nedprod.com>2021-12-03 20:55:35 +0300
commit48ac6664f123ca1072750f8c0169824683cf6aaf (patch)
tree47048ec5f0c14422d40c0e5bc8dff9e83b3385db
parentd27d130a239f1a92851a45f882c7333e5210716c (diff)
Disable header only CI builds on GCC to avoid ICE failing the build.all_tests_passed_48ac6664f123ca1072750f8c0169824683cf6aaf
-rw-r--r--.ci.cmake4
1 files changed, 3 insertions, 1 deletions
diff --git a/.ci.cmake b/.ci.cmake
index 7caba917..7d2783d0 100644
--- a/.ci.cmake
+++ b/.ci.cmake
@@ -14,7 +14,9 @@ ctest_start("Experimental")
#ctest_update()
message(STATUS "NOTE: CTEST_CONFIGURE_OPTIONS are '${CTEST_CONFIGURE_OPTIONS}'")
ctest_configure(OPTIONS "${CTEST_CONFIGURE_OPTIONS}")
-ctest_build(TARGET _hl)
+if(NOT "$ENV{CXX}" MATCHES "g\\+\\+") ## Avoid ICE for header only build in GCC
+ ctest_build(TARGET _hl)
+endif()
ctest_build(TARGET _dl)
ctest_build(TARGET _sl)
set(retval 0)