-
Notifications
You must be signed in to change notification settings - Fork 111
Update and clean gpuCI scripts #440
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
Merged
Merged
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
f4572f5
Gpuciscripts clean and update
msadang c36a658
Updated upload.sh and build.sh
msadang 76ad241
fixed missing gpuci_conda_retry
msadang 020fccd
removed gpuci_conda_retry
msadang 6c63d80
removed gpuci_logger and replaced parallel_level
msadang d83fd62
readded dask pip install
msadang 46ddecf
Merge branch 'branch-0.17' into gpuciscripts-update
msadang File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 was deleted.
Oops, something went wrong.
This file contains hidden or 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,44 @@ | ||
| #!/bin/bash | ||
| # | ||
| # Adopted from https://github.com/tmcdonell/travis-scripts/blob/dfaac280ac2082cd6bcaba3217428347899f2975/update-accelerate-buildbot.sh | ||
|
|
||
| set -e | ||
|
|
||
| # Setup 'gpuci_retry' for upload retries (results in 4 total attempts) | ||
| export GPUCI_RETRY_MAX=3 | ||
| export GPUCI_RETRY_SLEEP=30 | ||
|
|
||
| # Set default label options if they are not defined elsewhere | ||
| export LABEL_OPTION=${LABEL_OPTION:-"--label main"} | ||
|
|
||
| # Skip uploads unless BUILD_MODE == "branch" | ||
| if [ ${BUILD_MODE} != "branch" ]; then | ||
| echo "Skipping upload" | ||
| return 0 | ||
| fi | ||
|
|
||
| # Skip uploads if there is no upload key | ||
| if [ -z "$MY_UPLOAD_KEY" ]; then | ||
| echo "No upload key" | ||
| return 0 | ||
| fi | ||
|
|
||
| ################################################################################ | ||
| # SETUP - Get conda file output locations | ||
| ################################################################################ | ||
|
|
||
| gpuci_logger "Get conda file output locations" | ||
| export DASKCUDA_FILE=`conda build conda/recipes/dask-cuda --python=$PYTHON --output` | ||
|
|
||
| ################################################################################ | ||
| # UPLOAD - Conda packages | ||
| ################################################################################ | ||
|
|
||
| gpuci_logger "Starting conda uploads" | ||
|
|
||
| if [ "$UPLOAD_DASKCUDA" == "1" ]; then | ||
| test -e ${DASKCUDA_FILE} | ||
| echo "Upload Dask-cuda" | ||
| echo ${DASKCUDA_FILE} | ||
| gpuci_retry anaconda -t ${MY_UPLOAD_KEY} upload -u ${CONDA_USERNAME:-rapidsai} ${LABEL_OPTION} --skip-existing ${DASKCUDA_FILE} | ||
| fi |
This file contains hidden or 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 hidden or 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 hidden or 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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.