Skip to content

Commit 9b2409e

Browse files
committed
Don't bother building MPI on macOS CI
1 parent bccff34 commit 9b2409e

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ matrix:
3131
<<: *macOS
3232
env:
3333
- GCC=8
34+
BUILD_TYPES="debug RelWithDebInfo Release"
3435
OSX_PACKAGES="gcc openmpi shellcheck cmake"
3536
- &ubuntu
3637
os: linux

developer-scripts/travis/install.osx.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ for pkg in ${OSX_PACKAGES}; do
3030
done
3131

3232
# Uninstall mpich and openmpi so that we can install our own version
33-
brew uninstall --force --ignore-dependencies openmpi || true
34-
brew uninstall --force --ignore-dependencies mpich || true
33+
#brew uninstall --force --ignore-dependencies openmpi || true
34+
#brew uninstall --force --ignore-dependencies mpich || true
3535

3636
# Building CMake from source is very slow. We should be using binaries instead
3737
# if [[ "${BUILD_TYPE:-}" == InstallScript ]]; then # uninstall some stuff if present

developer-scripts/travis/test-script.InstallScript.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ echo "Performing Travis-CI script phase for the OpenCoarrays installation script
2323
export FC=gfortran-${GCC}
2424
export CC=gcc-${GCC}
2525
export CXX=g++-${GCC}
26+
${CC} --version
2627
./install.sh --yes-to-all -i "${HOME}/opencoarrays" -j 4 -f "$(type -P "${FC}")" -c "$(type -P "${CC}")" -C "$(type -P "${CXX}")"
2728
BUILD_LOC=(prerequisites/builds/opencoarrays/*/)
2829
BUILD_LOC_DIR="${BUILD_LOC[${#BUILD_LOC[@]}-1]}"

0 commit comments

Comments
 (0)