Skip to content

Commit

Permalink
Wip travis
Browse files Browse the repository at this point in the history
  • Loading branch information
OliverSchmitz committed Feb 20, 2019
1 parent 60ae5e0 commit 089585e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 9 deletions.
8 changes: 4 additions & 4 deletions .travis.yml
Expand Up @@ -15,7 +15,7 @@ matrix:
include:
- name: "Linux; gcc 5.4; debug"
os: linux
python: "3.6"
python: "3.5"
addons:
apt:
sources:
Expand All @@ -26,7 +26,7 @@ matrix:
- MATRIX_EVAL="CC=gcc-5 && CXX=g++-5"
- TRAVIS_BUILD_TYPE=Debug
- TRAVIS_CMAKE_GENERATOR="Unix Makefiles"
- TRAVIS_PYTHON_VERSION=3.6
- TRAVIS_PYTHON_VERSION=3.5
before_install:
- ./environment/travis/linux/before_install.sh
install:
Expand All @@ -39,7 +39,7 @@ matrix:

- name: "Linux; gcc 8; release"
os: linux
python: "3.6"
python: "3.5"
addons:
apt:
sources:
Expand All @@ -50,7 +50,7 @@ matrix:
- MATRIX_EVAL="CC=gcc-8 && CXX=g++-8"
- TRAVIS_BUILD_TYPE=Release
- TRAVIS_CMAKE_GENERATOR="Unix Makefiles"
- TRAVIS_PYTHON_VERSION=3.6
- TRAVIS_PYTHON_VERSION=3.5
before_install:
- ./environment/travis/linux/before_install.sh
install:
Expand Down
5 changes: 0 additions & 5 deletions environment/travis/script.sh
Expand Up @@ -3,11 +3,6 @@ set -e
set -v


echo $CC
echo $CXX
python$TRAVIS_PYTHON_VERSION --version
python$TRAVIS_PYTHON_VERSION -c "import numpy as n; print(n.__version__); print(n.get_include());"

cd $TRAVIS_BUILD_DIR/build
cmake --build . --config ${TRAVIS_BUILD_TYPE} --target all -- -j2

Expand Down

0 comments on commit 089585e

Please sign in to comment.