Revert "Build tests on ubuntu 16.04."
authorCarl Hetherington <cth@carlh.net>
Sun, 7 Feb 2021 23:13:37 +0000 (00:13 +0100)
committerCarl Hetherington <cth@carlh.net>
Sun, 7 Feb 2021 23:13:37 +0000 (00:13 +0100)
This reverts commit 93c2ca7dfc8feeae374c867c1c679334571a7547.

Building the tests on 16.04 needs a newer boost than it provides;
you can build it statically but then you need to link the boost test
library statically (which requires the removal of BOOST_TEST_DYN_LINK
all over the place).  Doing that fails in libsub for some reason.

cscript

diff --git a/cscript b/cscript
index 41f98b135226a74ec90b5486656c17832c915cd5..7b593c8cb211f80be86fd54310b4a25f2902a728 100644 (file)
--- a/cscript
+++ b/cscript
@@ -390,10 +390,10 @@ option_defaults = { "gui": True, "variant": None }
 def configure_options(target, options):
     opt = ' --warnings-are-errors'
 
-    if not ((target.platform == 'linux' and target.distro == 'ubuntu' and target.version in ('16.04', '18.04')) or
+    if not ((target.platform == 'linux' and target.distro == 'ubuntu' and target.version == '18.04') or
             (target.platform == 'osx') or
             (target.platform == 'windows')):
-        # Currently we only build tests on Ubuntu {16,18}.04, macOS and Windows
+        # Currently we only build tests on Ubuntu 18.04, macOS and Windows
         opt += ' --disable-tests'
 
     if target.debug: