Skip to content
This repository was archived by the owner on Feb 15, 2023. It is now read-only.

Commit 6dfb0cb

Browse files
committed
MAINT: Travis upload syntax
* Travis wheel uploads, both for weekly and merge events, are failing with an apparent syntax issue: * push event log example fail: https://travis-ci.org/github/MacPython/scipy-wheels/jobs/686382191 * cron event log example fail: https://travis-ci.org/github/MacPython/scipy-wheels/jobs/686383899 * looks like a `;` is missing at the end of some `pip install` lines in conditional blocks, so add those in to prevent the `pip install` command from propagating to the next line
1 parent 0847811 commit 6dfb0cb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ after_success:
121121
# generated at anaconda.org for scipy-wheels-nightly
122122
- if [ "$TRAVIS_EVENT_TYPE" == "cron" ]; then
123123
ANACONDA_ORG="scipy-wheels-nightly";
124-
pip install git+https://github.com/Anaconda-Server/anaconda-client
124+
pip install git+https://github.com/Anaconda-Server/anaconda-client;
125125
anaconda -t ${SCIPY_WHEELS_NIGHTLY} upload --force -u ${ANACONDA_ORG} ${TRAVIS_BUILD_DIR}/wheelhouse/*.whl;
126126
fi
127127
# for merges (push events) we use the staging area instead;
@@ -130,6 +130,6 @@ after_success:
130130
# multibuild-wheels-staging
131131
- if [ "$TRAVIS_EVENT_TYPE" == "push" ]; then
132132
ANACONDA_ORG="multibuild-wheels-staging";
133-
pip install git+https://github.com/Anaconda-Server/anaconda-client
133+
pip install git+https://github.com/Anaconda-Server/anaconda-client;
134134
anaconda -t ${SCIPY_STAGING_UPLOAD_TOKEN} upload --force -u ${ANACONDA_ORG} ${TRAVIS_BUILD_DIR}/wheelhouse/*.whl;
135135
fi

0 commit comments

Comments
 (0)