Skip to content

Commit 27bcd0f

Browse files
committed
[Build] Remove jobs to clean-up build maschines
All jobs that use dedicated build agents are now configured to always clean-up after their execution (regardless of if successful or not). Therefore special jobs to clean them up are not necessary anymore and just clutter the Jenkins instance and occupy precious resources.
1 parent 64f0376 commit 27bcd0f

11 files changed

+11
-294
lines changed

JenkinsJobs/AutomatedTests/I_unit_tests.groovy

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,11 @@ pipeline {
117117
}
118118
}
119119
}
120+
post {
121+
always {
122+
cleanWs()
123+
}
124+
}
120125
}
121126
122127
def pathOf(String path){

JenkinsJobs/Cleanup/Clean_ppcle_buildTest.groovy

Lines changed: 0 additions & 36 deletions
This file was deleted.

JenkinsJobs/Cleanup/Clean_ppcle_test.groovy

Lines changed: 0 additions & 36 deletions
This file was deleted.

JenkinsJobs/Cleanup/Clean_win_tests_machine.groovy

Lines changed: 0 additions & 40 deletions
This file was deleted.

JenkinsJobs/Cleanup/clean_macM1_tests_machine.groovy

Lines changed: 0 additions & 38 deletions
This file was deleted.

JenkinsJobs/Cleanup/cleanup_mac_build_machine.groovy

Lines changed: 0 additions & 35 deletions
This file was deleted.

JenkinsJobs/Cleanup/cleanup_mac_tests_machine.groovy

Lines changed: 0 additions & 36 deletions
This file was deleted.

JenkinsJobs/Cleanup/cleanup_performance_tests_machine.groovy

Lines changed: 0 additions & 34 deletions
This file was deleted.

JenkinsJobs/Cleanup/cleanup_win_builds_machine.groovy

Lines changed: 0 additions & 39 deletions
This file was deleted.

JenkinsJobs/SmokeTests/StartSmokeTests.jenkinsfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,7 @@ def runSmokeTest(Closure executorAgent, String agentId, String os, String arch,
124124
junit keepLongStdio: true, testResults: '**/eclipse-testing/results/xml/*.xml'
125125
} finally {
126126
archiveArtifacts allowEmptyArchive: true, artifacts: '**/eclipse-testing/results/**, **/eclipse-testing/directorLogs/**, */*.properties, */*.txt'
127+
cleanWs()
127128
}
128129
})
129130
}

0 commit comments

Comments
 (0)