mirror of
https://github.com/jkriege2/JKQtPlotter.git
synced 2024-12-25 18:11:38 +08:00
Merge pull request #26 from certik/travis
Improve Travis: test on Linux and macOS
This commit is contained in:
commit
89b39de672
52
.travis.yml
52
.travis.yml
@ -1,11 +1,26 @@
|
||||
language: cpp
|
||||
sudo: false
|
||||
compiler:
|
||||
- gcc
|
||||
- clang
|
||||
os:
|
||||
- linux
|
||||
- osx
|
||||
dist: xenial
|
||||
osx_image: xcode8.3
|
||||
|
||||
branches:
|
||||
only:
|
||||
- master
|
||||
|
||||
# Install dependencies
|
||||
matrix:
|
||||
exclude:
|
||||
# Disable all automatic entries in the test matrix
|
||||
- compiler: clang
|
||||
- compiler: gcc
|
||||
- os: osx
|
||||
- os: linux
|
||||
include:
|
||||
# Explicitly add tests that we want to run
|
||||
- env: BUILD_DOXYGEN="yes"
|
||||
compiler: gcc
|
||||
os: linux
|
||||
addons:
|
||||
apt:
|
||||
packages:
|
||||
@ -14,8 +29,6 @@ addons:
|
||||
- doxygen-latex
|
||||
- doxygen-gui
|
||||
- graphviz
|
||||
|
||||
|
||||
install:
|
||||
- pwd
|
||||
- doxygen --version
|
||||
@ -32,7 +45,6 @@ install:
|
||||
- travis_retry wget -O - ${DOXYGEN_URL} | tar --strip-components=1 -xz -C doxygen
|
||||
- export PATH=${DEPS_DIR}/doxygen/bin:${PATH}
|
||||
- doxygen --version
|
||||
|
||||
script:
|
||||
- pwd
|
||||
- cd ${TRAVIS_BUILD_DIR}
|
||||
@ -40,6 +52,29 @@ script:
|
||||
- doxygen --version
|
||||
- doxygen Doxyfile
|
||||
- echo "" > html/.nojekyll
|
||||
- compiler: clang
|
||||
os: osx
|
||||
- compiler: clang
|
||||
os: linux
|
||||
addons:
|
||||
apt:
|
||||
packages:
|
||||
- libglu1-mesa-dev
|
||||
- compiler: gcc
|
||||
os: linux
|
||||
addons:
|
||||
apt:
|
||||
packages:
|
||||
- libglu1-mesa-dev
|
||||
|
||||
install:
|
||||
- source ci/install_travis.sh
|
||||
|
||||
script:
|
||||
- ci/test_travis.sh
|
||||
|
||||
notifications:
|
||||
email: false
|
||||
|
||||
deploy:
|
||||
provider: pages
|
||||
@ -50,3 +85,4 @@ deploy:
|
||||
github_token: $GH_REPO_TOKEN
|
||||
on:
|
||||
branch: master
|
||||
condition: $BUILD_DOXYGEN = yes
|
||||
|
37
ci/install_travis.sh
Normal file
37
ci/install_travis.sh
Normal file
@ -0,0 +1,37 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
# Exit on error
|
||||
set -e
|
||||
# Echo each command
|
||||
set -x
|
||||
|
||||
export SOURCE_DIR=`pwd`
|
||||
export our_install_dir="$HOME/our_usr"
|
||||
|
||||
if [[ ! -d $HOME/conda_root/pkgs ]]; then
|
||||
rm -rf $HOME/conda_root
|
||||
if [[ "${TRAVIS_OS_NAME}" == "osx" ]]; then
|
||||
wget https://repo.continuum.io/miniconda/Miniconda3-latest-MacOSX-x86_64.sh -O miniconda.sh
|
||||
else
|
||||
wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh
|
||||
fi
|
||||
bash miniconda.sh -b -p $HOME/conda_root
|
||||
fi
|
||||
export PATH="$HOME/conda_root/bin:$PATH"
|
||||
conda config --set always_yes yes --set changeps1 no
|
||||
conda config --add channels conda-forge --force
|
||||
# Useful for debugging any issues with conda
|
||||
conda info -a
|
||||
|
||||
conda_pkgs="qt cmake"
|
||||
|
||||
conda create -q -p $our_install_dir ${conda_pkgs}
|
||||
|
||||
# Since this script is getting sourced, remove error on exit
|
||||
set +e
|
||||
set +x
|
||||
|
||||
source activate $our_install_dir
|
||||
|
||||
cd $SOURCE_DIR;
|
||||
|
11
ci/test_travis.sh
Executable file
11
ci/test_travis.sh
Executable file
@ -0,0 +1,11 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
# Exit on error
|
||||
set -e
|
||||
# Echo each command
|
||||
set -x
|
||||
|
||||
mkdir build
|
||||
cd build
|
||||
cmake -DCMAKE_INSTALL_PREFIX=$CONDA_PREFIX ..
|
||||
cmake --build . --target install
|
Loading…
Reference in New Issue
Block a user