Skip to content

Commit

Permalink
Travis deploys were checking older variables (#238)
Browse files Browse the repository at this point in the history
The past two PyPI deploys from Travis were skipped (1.0.0 and 1.1.0)
because the change from scripts to tox precipitated a change in the
variables in use. However, the deploy conditionals in the Travis file
were never updated. This should address that problem in the future
  • Loading branch information
greg-hellings authored and abraverm committed Oct 1, 2018
1 parent afc3077 commit a57e13e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,22 +41,22 @@ deploy:
distributions: "sdist bdist_wheel"
on:
tags: true
condition: $TEST = lint.sh
condition: $TOXENV = lint
- provider: script
repo: RedHatQE/cinch
script: ./scripts/deploy.sh centos6 false
on:
tags: true
condition: $TEST = cent6_slave.sh
condition: $TOXENV = cent6_slave
- provider: script
repo: RedHatQE/cinch
script: ./scripts/deploy.sh centos7 true
on:
tags: true
condition: $TEST = cent7_slave.sh
condition: $TOXENV = cent7_slave
- provider: script
repo: RedHatQE/cinch
script: ./scripts/deploy.sh fedora25 false
on:
tags: true
condition: $TEST = fedora_slave.sh
condition: $TOXENV = fedora_slave

0 comments on commit a57e13e

Please sign in to comment.