Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updates travis-ci to avoid very slow steps #1034

Merged
merged 1 commit into from
Dec 3, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 3 additions & 8 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,6 @@ before_script:
after_failure:
- more .tox/log/* | cat
- more .tox/*/log/* | cat
before_cache:
- rm -rf $HOME/.cache/pip/log
cache:
directories:
- "$HOME/.cache/pip"
notifications:
email:
on_success: never
Expand All @@ -67,7 +62,7 @@ jobs:
env:
- TOXENV=docs
- stage: deploy
if: branch = develop OR tag is present
if: type != pull_request AND (branch = develop OR tag is present)
python: 2.7
install: pip install m2r
script: echo "Deploying..."
Expand All @@ -90,7 +85,7 @@ jobs:
on:
tags: true
- stage: deploy
if: branch in (env(RELEASE_BRANCH), develop) OR tag is present
if: type != pull_request AND (branch in (master, develop) OR tag is present)
python: 3.6
install:
- echo "Install"
Expand All @@ -110,7 +105,7 @@ jobs:
script: satsuki
skip_cleanup: true
on:
branch: $RELEASE_BRANCH
branch: master
- provider: s3
bucket: $RELEASE_BUCKET
upload-dir: $S3_KEYFIX
Expand Down