Skip to content

Commit 127ac76

Browse files
committed
Remove clean integration step as there is only one branch.
1 parent 1a1edbd commit 127ac76

File tree

1 file changed

+0
-11
lines changed

1 file changed

+0
-11
lines changed

Jenkinsfile

-11
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ pipeline {
88
pollSCM('H/5 * * * *')
99
}
1010
parameters {
11-
booleanParam(name: 'CLEAN_INTEGRATION', defaultValue: false, description: 'Attention: Cleans the integration folder with all branches completely.')
1211
booleanParam(name: 'CODESIGN', defaultValue: false, description: 'Sign the artifacts.')
1312
booleanParam(name: 'PUBLISH_PRODUCTS', defaultValue: false, description: 'Copy to the compiled products for Windows, macOS and Linux')
1413
}
@@ -39,16 +38,6 @@ pipeline {
3938
archiveArtifacts 'chemclipse/products/org.eclipse.chemclipse.rcp.compilation.community.product/target/products/*.zip,chemclipse/products/org.eclipse.chemclipse.rcp.compilation.community.product/target/products/*.tar.gz'
4039
}
4140
}
42-
stage('clean integration') {
43-
when {
44-
environment name: 'CLEAN_INTEGRATION', value: 'true'
45-
}
46-
steps {
47-
sshagent ( ['projects-storage.eclipse.org-bot-ssh']) {
48-
sh "ssh [email protected] rm -rf /home/data/httpd/download.eclipse.org/chemclipse/integration/"
49-
}
50-
}
51-
}
5241
stage('deploy') {
5342
steps {
5443
sshagent ( ['projects-storage.eclipse.org-bot-ssh']) {

0 commit comments

Comments
 (0)