Skip to content
This repository has been archived by the owner on Jul 1, 2020. It is now read-only.

Commit

Permalink
Travis commit #2
Browse files Browse the repository at this point in the history
  • Loading branch information
cwfitzgerald committed Jun 13, 2018
1 parent e17daef commit 2243dbf
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ matrix:
packages:
- ninja-build
env:
- MATRIX_EVAL="Coverage='On' && CXX='g++-7' && TYPE='Debug'"
- MATRIX_EVAL="Coverage='On' && CXX='g++' && TYPE='Debug'"
install:
- eval "${MATRIX_EVAL}"
- pip install --user cpp-coveralls
Expand All @@ -31,7 +31,7 @@ matrix:
packages:
- ninja-build
env:
- MATRIX_EVAL="LINKER='LD' && CXX=g++-7 && TYPE='RelWithDebInfo'"
- MATRIX_EVAL="LINKER='LD' && CXX=g++ && TYPE='RelWithDebInfo'"
install:
- eval "${MATRIX_EVAL}"
- bash ./tools/travis/linux_deps.sh
Expand All @@ -47,7 +47,7 @@ matrix:
packages:
- ninja-build
env:
- MATRIX_EVAL="LINKER='LD' && CXX=g++-7 && TYPE='Release'"
- MATRIX_EVAL="LINKER='LD' && CXX=g++ && TYPE='Release'"
install:
- eval "${MATRIX_EVAL}"
- bash ./tools/travis/linux_deps.sh
Expand Down Expand Up @@ -117,7 +117,7 @@ matrix:
install:
- brew update
- HOMEBREW_NO_AUTO_UPDATE=1 brew upgrade cmake
- HOMEBREW_NO_AUTO_UPDATE=1 brew install ninja
- HOMEBREW_NO_AUTO_UPDATE=1 brew install ninja ossp-uuid
- bash ./build-deps-unix.sh
- mkdir -p build
- cd build && cmake .. -DCMAKE_BUILD_TYPE=Release -DOPENBVE2_ON_TRAVIS=True -GNinja
Expand Down
2 changes: 1 addition & 1 deletion build-deps-unix.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ wget -c -nc https://dl.bintray.com/boostorg/release/1.64.0/source/boost_1_64_0.t
# # Build Boost....
tar xjf dependencies/binary/downloads/boost_1_64_0.tar.bz2 -C dependencies/binary/src/boost
cd dependencies/binary/src/boost/boost_1_64_0/
echo "using gcc : 7.0 : `type -p g++-7` ; " > tools/build/src/user-config.jam
echo "using gcc : 7 : `type -p g++-7` ; " > tools/build/src/user-config.jam
./bootstrap.sh --prefix=$basedir/dependencies/binary/build_x64 --with-libraries=filesystem,system,regex
./b2 link=$linking threading=multi variant=release runtime-link=shared install -j$(($(nproc) + 1)) -d0
cd "${0%/*}"

0 comments on commit 2243dbf

Please sign in to comment.