forked from team3Group2EtechApp/etechAppMulti-Pipeline
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Jenkinsfile
76 lines (75 loc) · 1.98 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
pipeline{
agent any
stages{
stage('git-clone'){
steps{
checkout([$class: 'GitSCM', branches: [[name: '*/main']], extensions: [], userRemoteConfigs: [[credentialsId: 'github-id', url: 'https://github.com/team3Group2EtechApp/etechAppMulti-Pipeline.git']]])
}
}
stage('1-first parallel job'){
when {
branch 'main'
}
parallel{
stage('Phil-action'){
steps{
sh 'bash -x /var/lib/jenkins/workspace/etechAppParallelJob/phil.sh'
}
}
stage('abisola'){
steps{
sh 'bash -x /var/lib/jenkins/workspace/etechAppParallelJob/abisola.sh'
}
}
}
}
stage('2nd parallel job'){
when {
branch 'develop'
}
parallel{
stage('Anthony-actions'){
steps{
sh 'bash -x /var/lib/jenkins/workspace/etechAppParallelJob/anthony.sh'
}
}
stage('Judith-actions'){
steps{
sh 'bash -x /var/lib/jenkins/workspace/etechAppParallelJob/judith.sh'
}
}
}
}
stage('3rd parallel job'){
when {
branch 'feature'
}
parallel{
stage('Monic-action'){
steps{
sh 'bash -x /var/lib/jenkins/workspace/etechAppParallelJob/monic.sh'
}
}
stage('engineer-felix'){
steps{
sh 'bash -x /var/lib/jenkins/workspace/etechAppParallelJob/felix.sh'
}
}
}
}
stage('4th parallel job'){
parallel{
stage('Christiane-action'){
steps{
sh 'bash -x /var/lib/jenkins/workspace/etechAppParallelJob/christiane.sh'
}
}
stage('engineer-Ntizeah'){
steps{
sh 'bash -x /var/lib/jenkins/workspace/etechAppParallelJob/ntizeah.sh'
}
}
}
}
}
}