Skip to content

Commit

Permalink
[v1.10.x-aws] .ci/aws: Remove unnecessary stages
Browse files Browse the repository at this point in the history
deleteDir() recursively removes the Jenkins provided workspace on the
EFS. We run PortaFiducia out of local controller ephemeral storage,
which gets deleted with each job. Since we are not using the workspace,
there is no need to clean it up before each job.

checkoutSCMRepo pulls down aws-ofi-nccl to the fargate agent, which is a
waste of time because we only need it on the cluster.

Signed-off-by: Seth Zegelstein <szegel@amazon.com>
(cherry picked from commit a8009b8)
  • Loading branch information
a-szegel committed Nov 11, 2024
1 parent 40e4805 commit 0a88744
Showing 1 changed file with 0 additions and 11 deletions.
11 changes: 0 additions & 11 deletions .ci/aws/Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -140,17 +140,6 @@ pipeline {
REGION="us-west-2"
}
stages {
// Cleanup workspace before job start.
stage("Clean up workspace") {
steps{
deleteDir()
}
}
stage("Checkout SCM repo") {
steps {
checkout scm
}
}
stage("Download and extract PortaFiducia") {
steps {
script {
Expand Down

0 comments on commit 0a88744

Please sign in to comment.