-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #308 from dhermes/speed-up-build-stage-two
Uses pre-built wheels when pip installing from tox.
- Loading branch information
Showing
7 changed files
with
141 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,21 @@ | ||
#!/bin/bash | ||
# Temporarily perform default pip install before initial | ||
# wheelhouse is built. | ||
pip install "$@" | ||
|
||
# Copyright 2014 Google Inc. All rights reserved. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
if [[ -d ${WHEELHOUSE} ]]; then | ||
pip install --no-index --find-links=${WHEELHOUSE} "$@" | ||
fi | ||
# Update if the locally cached wheels are out-of-date. | ||
pip install --upgrade "$@" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
#!/bin/bash | ||
|
||
# Copyright 2014 Google Inc. All rights reserved. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
set -ev | ||
|
||
############################################## | ||
# Perform actions if we are updating master. # | ||
############################################## | ||
if [[ "${TRAVIS_BRANCH}" == "master" ]] && \ | ||
[[ "${TRAVIS_PULL_REQUEST}" == "false" ]]; then | ||
scripts/update_docs.sh | ||
scripts/update_wheels_project.sh | ||
else | ||
echo "Not in master on a non-pull request. Doing nothing." | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
#!/bin/bash | ||
|
||
# Copyright 2014 Google Inc. All rights reserved. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
set -ev | ||
|
||
######################################### | ||
# Settings for specific wheels project. # | ||
######################################### | ||
WHEELS_PROJECT_NAME="gcloud-python-wheels" | ||
# "gcloud-python-wheels" is already used by .travis.yml | ||
FRESH_REPO_DIR="gcloud-python-wheels-fresh" | ||
|
||
################################### | ||
# Checkout the wheels repository. # | ||
################################### | ||
git config --global user.email "travis@travis-ci.org" | ||
git config --global user.name "travis-ci" | ||
git clone --quiet --branch=master \ | ||
"https://${GH_OAUTH_TOKEN}@github.com//${GH_OWNER}/${WHEELS_PROJECT_NAME}" \ | ||
${FRESH_REPO_DIR} | ||
# NOTE: Assumes ${GH_OAUTH_TOKEN} and ${GH_OWNER} are set in Travis build | ||
# settings for project. This also assumes the wheels project is owned by | ||
# ${GH_OWNER} and that the token can be used to make commits. | ||
|
||
################################################# | ||
# Add the current commit hash to a static file. # | ||
################################################# | ||
echo "${TRAVIS_COMMIT}" > ${FRESH_REPO_DIR}/LATEST_COMMIT | ||
|
||
############################################## | ||
# Display git status and push LATEST_COMMIT. # | ||
############################################## | ||
cd ${FRESH_REPO_DIR} | ||
git add ${FRESH_REPO_DIR}/LATEST_COMMIT | ||
|
||
git status | ||
# H/T: http://stackoverflow.com/a/13730477/1068170 | ||
git commit -m "Latest wheels build by travis-ci. [ci skip]" | ||
git status | ||
git push origin master |