Skip to content
This repository has been archived by the owner on Nov 13, 2023. It is now read-only.

Commit

Permalink
Fix travis deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
virtuald committed Jan 10, 2018
1 parent 23ae823 commit d95485e
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion .travis.yml
Expand Up @@ -8,9 +8,10 @@ stages:
env:
- RUNCOVERAGE=1 ROBOTPY_NO_DEPS=1

# reverse order because travis already has latest python installed
python:
- "3.5"
- "3.6"
- "3.5"

# command to install dependencies
install:
Expand All @@ -26,34 +27,47 @@ jobs:
include:
- stage: deploy-pypi
if: tag IS present
install: true
script: cd hal-sim
deploy:
- provider: pypi
user: $PYPI_USERNAME
password: $PYPI_PASSWORD
on:
tags: true
- stage: deploy-pypi
if: tag IS present
install: true
script: cd hal-base
deploy:
- provider: pypi
user: $PYPI_USERNAME
password: $PYPI_PASSWORD
on:
tags: true
- stage: deploy-pypi
if: tag IS present
install: true
script: cd hal-roborio
deploy:
- provider: pypi
user: $PYPI_USERNAME
password: $PYPI_PASSWORD
on:
tags: true
- stage: deploy-pypi
install: true
if: tag IS present
script: cd wpilib
deploy:
provider: pypi
user: $PYPI_USERNAME
password: $PYPI_PASSWORD
on:
tags: true
- stage: deploy-github
if: tag IS present
install: true
script: devtools/build_installer.sh
deploy:
- provider: releases
Expand Down

0 comments on commit d95485e

Please sign in to comment.