forked from eclipse/swtchart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Jenkinsfile
39 lines (39 loc) · 1.03 KB
/
Jenkinsfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
pipeline {
agent {
kubernetes {
label 'centos-latest'
}
}
triggers {
pollSCM('H/5 * * * *')
}
options {
disableConcurrentBuilds()
}
tools {
maven 'apache-maven-latest'
jdk 'temurin-jdk17-latest'
}
stages {
stage('Build') {
steps {
wrap([$class: 'Xvnc', takeScreenshot: false, useXauthority: true]) {
sh '''
mvn -f org.eclipse.swtchart.cbi/pom.xml -Peclipse-sign clean install
'''
}
}
}
stage('deploy') {
steps {
sshagent ( ['projects-storage.eclipse.org-bot-ssh']) {
sh '''
ssh [email protected] rm -rf /home/data/httpd/download.eclipse.org/swtchart/integration/${BRANCH_NAME}
ssh [email protected] mkdir -p /home/data/httpd/download.eclipse.org/swtchart/integration/${BRANCH_NAME}/repository
scp -r org.eclipse.swtchart.updatesite/target/repository/* [email protected]:/home/data/httpd/download.eclipse.org/swtchart/integration/${BRANCH_NAME}/repository
'''
}
}
}
}
}