8000 WIP: debugging travis file · matplotlib/matplotlib@9419e81 · GitHub
[go: up one dir, main page]

Skip to content

Commit 9419e81

Browse files
committed
WIP: debugging travis file
1 parent 3171a2e commit 9419e81

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

.travis.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ script:
6868
6969
after_failure:
7070
|
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
7272
gem install travis-artifacts
7373
cd $TRAVIS_BUILD_DIR/../tmp_test_dir
7474
tar cjf result_images.tar.bz2 result_images
@@ -78,7 +78,7 @@ after_failure:
7878

7979
after_success:
8080
|
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
8282
cd $TRAVIS_BUILD_DIR
8383
echo "Uploading documentation"
8484
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:
100100
else
101101
echo "Will only deploy docs build from matplotlib master branch"
102102
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
106107
cd $TRAVIS_BUILD_DIR
107108
python .travis/travis_after_all.py
108109
export $(cat .to_export_back)

0 commit comments

Comments
 (0)
0