From 93f8c1785385f2b8160161f7eb802b604ee764a2 Mon Sep 17 00:00:00 2001 From: Adam Mercer Date: Tue, 31 Jul 2018 12:01:02 -0400 Subject: [PATCH] disable Octave SWIG bindings in macOS nightly builds MacPorts has got to the point where it's no longer feasible to build Octave-4.2.x from source, disable building on the Octave SWIG bindings on the macOS nightly builds. Re-enable this when SWIG-4.0.0 is available. --- .gitlab-ci.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 83d3305fe8..33b87d6163 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -392,7 +392,9 @@ nightly:macos:highsierra: stage: nightly script: - ./00boot - - PYTHON=/opt/local/bin/python2.7 ./configure --enable-swig --enable-doxygen + # FIXME: disable building of Octave SWIG bindings until SWIG-4.0.0 + # is available + - PYTHON=/opt/local/bin/python2.7 ./configure --enable-doxygen - make -j4 - make -j4 check dependencies: [] @@ -406,7 +408,9 @@ nightly:macos:elcapitan: stage: nightly script: - ./00boot - - PYTHON=/opt/local/bin/python2.7 ./configure --enable-swig --enable-doxygen + # FIXME: disable building of Octave SWIG bindings until SWIG-4.0.0 + # is available + - PYTHON=/opt/local/bin/python2.7 ./configure --enable-doxygen - make -j4 - make -j4 check dependencies: [] -- GitLab