forked from eclipse-cognicrypt/CogniCrypt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Jenkinsfile
44 lines (42 loc) · 1.65 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
40
41
42
43
44
pipeline {
agent any
tools {
maven 'apache-maven-latest'
jdk 'oracle-jdk8-latest'
}
stages {
stage('Build') {
steps {
sh 'mvn clean package -X -e'
}
}
stage('Publish Snapshot'){
when {
branch 'develop';
}
steps {
sshagent ( ['projects-storage.eclipse.org-bot-ssh']) {
sh '''
ssh [email protected] rm -rf /home/data/httpd/download.eclipse.org/cognicrypt/snapshot
ssh [email protected] mkdir -p /home/data/httpd/download.eclipse.org/cognicrypt/snapshot
scp -r repository/target/repository/* [email protected]:/home/data/httpd/download.eclipse.org/cognicrypt/snapshot
'''
}
}
}
stage('Publish Stable'){
when {
branch 'master';
}
steps {
sshagent ( ['projects-storage.eclipse.org-bot-ssh']) {
sh '''
ssh [email protected] rm -rf /home/data/httpd/download.eclipse.org/cognicrypt/stable
ssh [email protected] mkdir -p /home/data/httpd/download.eclipse.org/cognicrypt/stable
scp -r repository/target/repository/* [email protected]:/home/data/httpd/download.eclipse.org/cognicrypt/stable
'''
}
}
}
}
}