-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJenkinsfile
More file actions
71 lines (71 loc) · 1.42 KB
/
Jenkinsfile
File metadata and controls
71 lines (71 loc) · 1.42 KB
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
pipeline{
agent {
label {
label 'slave1'
}
}
stages{
stage('git-clone - Sithabile'){
steps{
checkout([$class: 'GitSCM', branches: [[name: '*/main']], extensions: [], userRemoteConfigs: [[credentialsId: 'github-id', url: 'https://github.com/Team3-G4-Techops/Techops-Master-Slave.git']]])
}
}
stage('parallel-job 1'){
parallel{
stage('sub-job1 - Sithabile'){
steps{
sh 'echo master slave test'
}
}
stage('sub-job 2 - roger'){
steps{
sh 'echo master slave test'
}
}
}
}
stage('parallel-job 2'){
parallel{
stage('sub-job1 - Roger'){
agent {
label {
label 'slave2'
}
}
steps{
sh 'ps -ef'
}
}
stage('sub-job2 - Kingue'){
agent {
label {
label 'slave3'
}
}
steps{
sh 'ps -ef'
}
}
}
}
stage('parallel-job 3'){
parallel{
stage('sub-job1 - Constance'){
steps{
sh 'ps -ef'
}
}
stage('sub-job2 - Wille'){
agent {
label {
label 'slave2'
}
}
steps{
sh 'ps -ef'
}
}
}
}
}
}