File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -68,7 +68,7 @@ script:
68
68
69
69
after_failure :
70
70
|
71
- if [[ $BUILD_DOCS == false && $TRAVIS_PULL_REQUEST == false && $TRAVIS_REPO_SLUG == 'matplotlib/matplotlib' ]]; then
71
+ if [[ $BUILD_DOCS == false ]]; then # && $TRAVIS_PULL_REQUEST == false && $TRAVIS_REPO_SLUG == 'matplotlib/matplotlib' ]]; then
72
72
gem install travis-artifacts
73
73
cd $TRAVIS_BUILD_DIR/../tmp_test_dir
74
74
tar cjf result_images.tar.bz2 result_images
@@ -78,7 +78,7 @@ after_failure:
78
78
79
79
after_success :
80
80
|
81
- if [[ $TRAVIS_PULL_REQUEST == false && $BUILD_DOCS == true && $TRAVIS_BRANCH == 'master' ]]; then
81
+ if [[ $BUILD_DOCS == true ]]; then # [[ $ TRAVIS_PULL_REQUEST == false && $BUILD_DOCS == true && $TRAVIS_BRANCH == 'master' ]]; then
82
82
cd $TRAVIS_BUILD_DIR
83
83
echo "Uploading documentation"
84
84
openssl aes-256-cbc -K $encrypted_cc802e084cd0_key -iv $encrypted_cc802e084cd0_iv -in .travis/matplotlibDeployKey.enc -out .travis/matplotlibDeployKey -d
@@ -100,9 +100,10 @@ after_success:
100
100
else
101
101
echo "Will only deploy docs build from matplotlib master branch"
102
102
fi
103
- if [[ $TRAVIS_PULL_REQUEST == false ]] && \
104
- [[ $TRAVIS_REPO_SLUG == 'matplotlib/matplotlib' ]] && \
105
- [[ $TRAVIS_BRANCH == 'master' ]]; then
103
+ if [ 1 ]; then
104
+ # [[ $TRAVIS_PULL_REQUEST == false ]]; then # && \
105
+ # [[ $TRAVIS_REPO_SLUG == 'matplotlib/matplotlib' ]] && \
106
+ # [[ $TRAVIS_BRANCH == 'master' ]]; then
106
107
cd $TRAVIS_BUILD_DIR
107
108
python .travis/travis_after_all.py
108
109
export $(cat .to_export_back)
You can’t perform that action at this time.
0 commit comments