Fix buffer tests

This commit is contained in:
2020-04-29 17:51:26 +02:00
parent 50b5aac1ad
commit 03be8dd228
2 changed files with 1 additions and 50 deletions
-49
View File
@@ -1,49 +0,0 @@
sudo: false
language: cpp
matrix:
include:
- os: linux
env: CONDA_PY=3.5
- os: linux
env: CONDA_PY=3.6
- os: osx
env: CONDA_PY=3.5
- os: osx
env: CONDA_PY=3.6
install:
# Set the anaconda environment
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
if [[ "$CONDA_PY" == "2.7" ]]; then
curl https://repo.continuum.io/miniconda/Miniconda2-latest-MacOSX-x86_64.sh -o miniconda.sh;
else
curl https://repo.continuum.io/miniconda/Miniconda3-latest-MacOSX-x86_64.sh -o miniconda.sh;
fi
else
if [[ "$CONDA_PY" == "2.7" ]]; then
curl https://repo.continuum.io/miniconda/Miniconda2-latest-Linux-x86_64.sh -O miniconda.sh;
else
wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh;
fi
fi
- bash miniconda.sh -b -p $HOME/miniconda
- export PATH="$HOME/miniconda/bin:$PATH"
- hash -r
- conda config --set always_yes yes --set changeps1 no
- conda config --add channels defaults
- conda config --add channels conda-forge
- conda update -q --all
- conda install conda-build anaconda-client
# build
- conda build --no-test conda-recipe
script:
- echo "No test scripts to be run!"
deploy:
provider: script
script: find $HOME/miniconda/conda-bld/${TRAVIS_OS_NAME}-64 -name "*.tar.bz2" -exec anaconda -t $CONDA_TOKEN upload {} \;
on:
tags: true
+1 -1
View File
@@ -1,7 +1,7 @@
add_executable(sf-buffer_tests test_main.cpp)
target_link_libraries(sf-buffer_tests
core-writer
core-buffer
gtest
zmq
hdf5