Skip to content
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

Remove GPU Types from github #733

Merged
merged 1 commit into from
Sep 11, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 3 additions & 5 deletions jenkins/Jenkinsfile-blossom.premerge
Original file line number Diff line number Diff line change
Expand Up @@ -85,11 +85,7 @@ spec:
- matchExpressions:
- key: nvidia.com/gpu_type
operator: In
values:
- Tesla_V100S_PCIE_32GB
- Tesla_V100_PCIE_32GB
- TITAN_RTX
- Tesla_T4
values: GPU_TYPES
"""

def githubHelper // blossom github helper
Expand Down Expand Up @@ -122,6 +118,7 @@ pipeline {
// TODO: rename this credential after we shutdown premerge pipeline on ngcc
URM_CREDS = credentials("svcngcc_artifactory")
URM_URL = "https://${ArtifactoryConstants.ARTIFACTORY_NAME}/artifactory/sw-spark-maven"
GPU_TYPES = credentials("pre-merge_gpu_types")
}

stages {
Expand Down Expand Up @@ -192,6 +189,7 @@ pipeline {
uploadDocker(IMAGE_PREMERGE)

pluginPremerge = pluginPremerge.replace("IMAGE_PREMERGE", "$IMAGE_PREMERGE")
pluginPremerge = pluginPremerge.replace("GPU_TYPES", "$GPU_TYPES")
}
}
}
Expand Down