forked from holoviz/holoviews
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
225 lines (199 loc) · 8.46 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
# We deliberately don't use travis's language=python option because
# we install miniconda and use conda to get python. Additionally,
# Travis's auto-install of python doesn't work on osx images (see
# https://github.com/travis-ci/travis-ci/issues/4729).
git:
depth: 100
language: generic
os:
- linux
dist: xenial
notifications:
email:
on_failure: change # [always|never|change] default: always
env:
global:
- PYENV_VERSION=3.7
- PKG_TEST_PYTHON="--test-python=py36 --test-python=py27"
- CHANS_DEV="-c pyviz/label/dev -c conda-forge"
- CHANS="-c pyviz"
- MPLBACKEND="Agg"
- PYTHON_VERSION=3.6
stages:
- test
- name: extra_tests
if: type = cron
- name: conda_dev_package
if: tag =~ ^v(\d+|\.)*[a-z]\d*$
- name: pip_dev_package
if: tag =~ ^v(\d+|\.)*[a-z]\d*$
- name: conda_package
if: tag =~ ^v(\d+|\.)*[^a-z]\d*$
- name: pip_package
if: tag =~ ^v(\d+|\.)*[^a-z]\d*$
- name: docs
if: tag =~ ^v(\d+|\.)*[^a-z]\d*$
- name: gallery
if: tag =~ ^v(\d+|\.)*[^a-z]\d*$
- name: docs_dev
if: tag =~ ^v(\d+|\.)*[a-z]\d*$
- name: gallery_dev
if: tag =~ ^v(\d+|\.)*[a-z]\d*$
- name: docs_daily
if: (type = cron OR commit_message =~ /\[doc-build\]/)
- name: gallery_daily
if: (type = cron OR commit_message =~ /\[doc-build\]/)
jobs:
include:
########## Test Stage ##########
- &default
stage: test
env: DESC="Python 3.6 tests" HV_REQUIREMENTS="unit_tests" PYTHON_VERSION=3.6
before_install:
- pip install pyctdev && doit miniconda_install && pip uninstall -y doit pyctdev
- export PATH="$HOME/miniconda/bin:$PATH" && hash -r
- conda config --set always_yes True
- conda install -c pyviz "pyctdev>=0.5" && doit ecosystem_setup
install:
- doit env_create $CHANS_DEV --python=$PYTHON_VERSION
- source activate test-environment
- travis_wait 20 doit develop_install $CHANS_DEV -o $HV_REQUIREMENTS
- doit env_capture
script:
- doit test_all_recommended
after_success: coveralls
after_failure: sleep 10
- <<: *default
env: DESC="Python 2.7 tests" PYTHON_VERSION=2.7 HV_REQUIREMENTS="unit_tests"
# - ®ression_test
# <<: *default
# env: DESC="Python 3.6 regression tests" HV_REQUIREMENTS="nbtests"
# before_script:
# - if [ "$TRAVIS_PULL_REQUEST" == 'false' ]; then
# echo "Attempting to find any associated pull request";
# CURRENT_BUILD=$(curl -s -X GET "https://api.travis-ci.org/repos/pyviz/holoviews/builds?number=$TRAVIS_BUILD_NUMBER");
# NEXT_BUILD=$(curl -s -X GET "https://api.travis-ci.org/repos/pyviz/holoviews/builds?number=$((TRAVIS_BUILD_NUMBER + 1))");
# MSG1=$(echo $CURRENT_BUILD | jq '.[].message' );
# MSG2=$(echo $NEXT_BUILD | jq '.[].message' );
# if [ "$MSG1" == "$MSG2" ] ; then
# BUILD_ID=$(echo $NEXT_BUILD | jq .[].id);
# TRAVIS_PULL_REQUEST=$(curl -s -X GET "https://api.travis-ci.org/repos/pyviz/holoviews/builds/$BUILD_ID" | jq .compare_url | cut -d '/' -f7 | cut -d \" -f1);
# echo "Associated pull request found - PR $TRAVIS_PULL_REQUEST";
# fi
# fi
# - REF_DATA_BRANCH=${TRAVIS_PULL_REQUEST//false/reference_data}
# - git clone https://github.com/ioam/holoviews-data.git -b reference_data ./doc/reference_data
# - pushd ./doc/reference_data
# - echo "Attempting to checkout $REF_DATA_BRANCH branch"
# - if [ $(git branch -a --list *origin/$REF_DATA_BRANCH | wc -l) -eq 1 ] ; then
# git checkout origin/$REF_DATA_BRANCH;
# else
# echo "Using the master branch reference data";
# fi
# - popd
# - export HOLOVIEWSRC=`pwd`'/holoviews.rc'
# - echo 'import holoviews as hv;hv.config(style_17=True);hv.config.warn_options_call=True' > holoviews.rc
# - pushd ./doc/nbpublisher
# script:
# - QT_QPA_PLATFORM='offscreen' BOKEH_DEV=True python ./test_notebooks.py
# after_script:
# - python ./doc/nbpublisher/concat_html.py ./doc/test_data ./doc/test_html
# - if [ "$TRAVIS_BRANCH" == 'master' ]; then
# cd doc/test_data;
# zip -r test_data.zip *;
# aws s3 cp --region eu-west-1 ./test_data.zip "s3://preview.holoviews.org/$TRAVIS_BUILD_NUMBER/test_data_py${PYTHON_VERSION:0:1}.zip";
# cd -;
# fi
# - aws s3 cp --recursive --region eu-west-1 ./doc/test_html "s3://travis.holoviews.org/build_$TRAVIS_BUILD_NUMBER"
# - curl -s -X GET "https://kq5y73i0xe.execute-api.eu-west-1.amazonaws.com/dev/travis-holoviews-index"
# - echo insecure >> ~/.curlrc
# - if [ "$TRAVIS_PULL_REQUEST" != 'false' ]; then
# curl -X POST -d "$TRAVIS_BUILD_NUMBER" "https://kq5y73i0xe.execute-api.eu-west-1.amazonaws.com/dev/pr-status";
# fi
# after_success:
# - popd
# - mv doc/Tutorials/.coverage ./.coverage
# - coveralls
# after_failure:
# - popd
# - sleep 10
# - <<: *regression_test
# env: DESC="Python 2.7 regression tests" PYTHON_VERSION=2.7 HV_REQUIREMENTS="nbtests"
- &basic_deps
<<: *default
stage: extra_tests
env: DESC="Basic dependencies" HV_REQUIREMENTS="basic_tests"
after_success: echo "Success"
########## DOCS ##########
- &doc_build
<<: *default
stage: docs_dev
env: DESC="docs" CHANS_DEV="-c pyviz/label/dev" HV_DOC_GALLERY='false' HV_DOC_REF_GALLERY='false' HV_REQUIREMENTS="doc" PANEL_EMBED='true' PANEL_EMBED_JSON='true' PANEL_EMBED_JSON_PREFIX='json'
script:
- bokeh sampledata
- conda install -c conda-forge awscli
- nbsite generate-rst --org pyviz --project-name holoviews --skip ^reference
- nbsite build --what=html --output=builtdocs
after_success:
- aws s3 sync ./ s3://holoviews-doc-builds/$TRAVIS_BUILD_NUMBER --exclude=".git/*" --exclude="doc/nbpublisher/*"
- &gallery_build
<<: *doc_build
stage: gallery_dev
env: DESC="gallery" CHANS_DEV="-c pyviz/label/dev" HV_REQUIREMENTS="doc" BUCKET="dev."
script:
- bokeh sampledata
- conda install -c conda-forge awscli
- conda install -c conda-forge mpl_sample_data --no-deps
- aws s3 sync s3://holoviews-doc-builds/$TRAVIS_BUILD_NUMBER ./
- git reset --hard --recurse-submodule
- nbsite build --what=html --output=builtdocs
after_success:
- aws s3 sync ./builtdocs s3://${BUCKET}holoviews.org/
- aws s3 rm --recursive s3://holoviews-doc-builds/$TRAVIS_BUILD_NUMBER
- <<: *doc_build
stage: docs_daily
- <<: *gallery_build
stage: gallery_daily
env: DESC="gallery" CHANS_DEV="-c pyviz/label/dev" HV_DOC_GALLERY='false' HV_DOC_REF_GALLERY='false' HV_REQUIREMENTS="doc" BUCKET="build."
- <<: *doc_build
stage: docs
- <<: *gallery_build
stage: gallery
env: DESC="gallery" CHANS_DEV="-c pyviz/label/dev" HV_REQUIREMENTS="doc"
after_success:
- aws s3 sync ./builtdocs s3://holoviews.org/
########## END-USER PACKAGES ##########
### CONDA ####
- &conda_pkg
<<: *default
stage: conda_dev_package
env: DESC="" TRAVIS_NOCACHE=$TRAVIS_JOB_ID
install:
- doit package_build $CHANS_DEV --no-pkg-tests
script:
- doit package_upload --token=$CONDA_UPLOAD_TOKEN --label=dev
- <<: *conda_pkg
stage: conda_package
env: DESC="" TRAVIS_NOCACHE=$TRAVIS_JOB_ID
install:
- doit package_build $CHANS_DEV --no-pkg-tests
script:
- doit package_upload --token=$CONDA_UPLOAD_TOKEN --label=dev --label=main
### PyPI ###
- &pip_pkg
<<: *default
stage: pip_dev_package
env: PYPI="https://test.pypi.org/legacy/" TRAVIS_NOCACHE=$TRAVIS_JOB_ID
install:
- travis_wait 30 doit develop_install $CHANS_DEV -o unit_tests && pip uninstall -y holoviews
- doit pip_on_conda
- doit ecosystem=pip package_build
script: doit ecosystem=pip package_upload -u $TPPU -p $TPPP -r ${PYPI}
- <<: *pip_pkg
stage: pip_package
env: PYPI="https://upload.pypi.org/legacy/" TRAVIS_NOCACHE=$TRAVIS_JOB_ID
install:
- travis_wait 30 doit develop_install $CHANS_DEV -o unit_tests && pip uninstall -y holoviews
- doit pip_on_conda
- doit ecosystem=pip package_build
script: doit ecosystem=pip package_upload -u $PPU -p $PPP -r ${PYPI}