Skip to content

Commit 06865aa

Browse files
committed
Enable ipopt also on the arm64/ppc64 builds.
1 parent 6ebcbf2 commit 06865aa

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

tools/circleci_ubuntu_arm64.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@ wget https://github.com/conda-forge/miniforge/releases/latest/download/Miniforge
1414
export deps_dir=$HOME/local
1515
export PATH="$HOME/miniconda/bin:$PATH"
1616
bash miniconda.sh -b -p $HOME/miniconda
17-
conda create -y -q -p $deps_dir c-compiler cxx-compiler cmake eigen nlopt boost-cpp tbb tbb-devel
17+
conda create -y -q -p $deps_dir c-compiler cxx-compiler cmake eigen nlopt ipopt boost-cpp tbb tbb-devel
1818
source activate $deps_dir
1919

2020
# Create the build dir and cd into it.
2121
mkdir build
2222
cd build
2323

2424
# GCC build.
25-
cmake ../ -DCMAKE_PREFIX_PATH=$deps_dir -DCMAKE_BUILD_TYPE=Debug -DPAGMO_BUILD_TESTS=yes -DPAGMO_WITH_EIGEN3=yes -DPAGMO_WITH_NLOPT=yes
25+
cmake ../ -DCMAKE_PREFIX_PATH=$deps_dir -DCMAKE_BUILD_TYPE=Debug -DPAGMO_BUILD_TESTS=yes -DPAGMO_WITH_EIGEN3=yes -DPAGMO_WITH_NLOPT=yes -DPAGMO_WITH_IPOPT=yes
2626
make -j2 VERBOSE=1
2727
# Run the tests, except the fork island which
2828
# gives spurious warnings in the address sanitizer.

tools/travis_ubuntu_ppc64.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@ wget https://github.com/conda-forge/miniforge/releases/latest/download/Miniforge
1414
export deps_dir=$HOME/local
1515
export PATH="$HOME/miniconda/bin:$PATH"
1616
bash miniconda.sh -b -p $HOME/miniconda
17-
conda create -y -q -p $deps_dir c-compiler cxx-compiler cmake eigen nlopt boost-cpp tbb tbb-devel
17+
conda create -y -q -p $deps_dir c-compiler cxx-compiler cmake eigen nlopt ipopt boost-cpp tbb tbb-devel
1818
source activate $deps_dir
1919

2020
# Create the build dir and cd into it.
2121
mkdir build
2222
cd build
2323

2424
# GCC build.
25-
cmake ../ -DCMAKE_PREFIX_PATH=$deps_dir -DCMAKE_BUILD_TYPE=Debug -DPAGMO_BUILD_TESTS=yes -DPAGMO_WITH_EIGEN3=yes -DPAGMO_WITH_NLOPT=yes
25+
cmake ../ -DCMAKE_PREFIX_PATH=$deps_dir -DCMAKE_BUILD_TYPE=Debug -DPAGMO_BUILD_TESTS=yes -DPAGMO_WITH_EIGEN3=yes -DPAGMO_WITH_NLOPT=yes -DPAGMO_WITH_IPOPT=yes
2626
make -j2 VERBOSE=1
2727
# Run the tests, except the fork island which
2828
# gives spurious warnings in the address sanitizer.

0 commit comments

Comments
 (0)