mirror of
https://github.com/jkriege2/JKQtPlotter.git
synced 2024-12-26 10:31:39 +08:00
Merge branch 'master' of https://github.com/jkriege2/JKQtPlotter
This commit is contained in:
commit
f70d93ba11
52
.travis.yml
52
.travis.yml
@ -1,11 +1,26 @@
|
|||||||
|
language: cpp
|
||||||
sudo: false
|
sudo: false
|
||||||
|
compiler:
|
||||||
|
- gcc
|
||||||
|
- clang
|
||||||
|
os:
|
||||||
|
- linux
|
||||||
|
- osx
|
||||||
dist: xenial
|
dist: xenial
|
||||||
|
osx_image: xcode8.3
|
||||||
|
|
||||||
branches:
|
matrix:
|
||||||
only:
|
exclude:
|
||||||
- master
|
# Disable all automatic entries in the test matrix
|
||||||
|
- compiler: clang
|
||||||
# Install dependencies
|
- compiler: gcc
|
||||||
|
- os: osx
|
||||||
|
- os: linux
|
||||||
|
include:
|
||||||
|
# Explicitly add tests that we want to run
|
||||||
|
- env: BUILD_DOXYGEN="yes"
|
||||||
|
compiler: gcc
|
||||||
|
os: linux
|
||||||
addons:
|
addons:
|
||||||
apt:
|
apt:
|
||||||
packages:
|
packages:
|
||||||
@ -14,8 +29,6 @@ addons:
|
|||||||
- doxygen-latex
|
- doxygen-latex
|
||||||
- doxygen-gui
|
- doxygen-gui
|
||||||
- graphviz
|
- graphviz
|
||||||
|
|
||||||
|
|
||||||
install:
|
install:
|
||||||
- pwd
|
- pwd
|
||||||
- doxygen --version
|
- doxygen --version
|
||||||
@ -32,7 +45,6 @@ install:
|
|||||||
- travis_retry wget -O - ${DOXYGEN_URL} | tar --strip-components=1 -xz -C doxygen
|
- travis_retry wget -O - ${DOXYGEN_URL} | tar --strip-components=1 -xz -C doxygen
|
||||||
- export PATH=${DEPS_DIR}/doxygen/bin:${PATH}
|
- export PATH=${DEPS_DIR}/doxygen/bin:${PATH}
|
||||||
- doxygen --version
|
- doxygen --version
|
||||||
|
|
||||||
script:
|
script:
|
||||||
- pwd
|
- pwd
|
||||||
- cd ${TRAVIS_BUILD_DIR}
|
- cd ${TRAVIS_BUILD_DIR}
|
||||||
@ -40,6 +52,29 @@ script:
|
|||||||
- doxygen --version
|
- doxygen --version
|
||||||
- doxygen Doxyfile
|
- doxygen Doxyfile
|
||||||
- echo "" > html/.nojekyll
|
- 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:
|
deploy:
|
||||||
provider: pages
|
provider: pages
|
||||||
@ -50,3 +85,4 @@ deploy:
|
|||||||
github_token: $GH_REPO_TOKEN
|
github_token: $GH_REPO_TOKEN
|
||||||
on:
|
on:
|
||||||
branch: master
|
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