Skip to content

Commit

Permalink
Remove unused shared lib in Jenkins files (#10620)
Browse files Browse the repository at this point in the history
"shared-libs" had not been used since we switched to blossom Jenkins.

We had ever used "shared-libs" before, but now only need "blossom-lib".

Signed-off-by: Tim Liu <timl@nvidia.com>
  • Loading branch information
NvTimLiu authored Mar 22, 2024
1 parent 079d0fe commit 579cc13
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions jenkins/Jenkinsfile-blossom.premerge
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/local/env groovy
/*
* Copyright (c) 2020-2023, NVIDIA CORPORATION.
* Copyright (c) 2020-2024, NVIDIA CORPORATION.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand All @@ -24,7 +24,7 @@ import hudson.model.Result
import hudson.model.Run
import jenkins.model.CauseOfInterruption.UserInterruption

@Library(['shared-libs', 'blossom-lib']) _
@Library('blossom-lib')
@Library('blossom-github-lib@master')
import ipp.blossom.*

Expand Down Expand Up @@ -68,10 +68,10 @@ pipeline {
PREMERGE_SCRIPT = '$JENKINS_ROOT/spark-premerge-build.sh'
MVN_URM_MIRROR = '-s jenkins/settings.xml -P mirror-apache-to-urm'
LIBCUDF_KERNEL_CACHE_PATH = '/tmp/.cudf'
ARTIFACTORY_NAME = "${ArtifactoryConstants.ARTIFACTORY_NAME}"
ARTIFACTORY_NAME = "${common.ARTIFACTORY_NAME}"
GITHUB_TOKEN = credentials("github-token")
URM_CREDS = credentials("urm_creds")
URM_URL = "https://${ArtifactoryConstants.ARTIFACTORY_NAME}/artifactory/sw-spark-maven"
URM_URL = "https://${common.ARTIFACTORY_NAME}/artifactory/sw-spark-maven"
PVC = credentials("pvc")
CUSTOM_WORKSPACE = "/home/jenkins/agent/workspace/${BUILD_TAG}"
CLASSIFIER = 'cuda11'
Expand Down
2 changes: 1 addition & 1 deletion jenkins/Jenkinsfile-blossom.premerge-databricks
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
*
*/

@Library(['shared-libs', 'blossom-lib']) _
@Library('blossom-lib')
@Library('blossom-github-lib@master')

import ipp.blossom.*
Expand Down

0 comments on commit 579cc13

Please sign in to comment.