-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJenkinsfile
40 lines (35 loc) · 864 Bytes
/
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
node{
stage('Get Repository'){
git 'https://github.com/IDRISSHACKER/guihonv2-react.git'
}
stage('Config ENV'){
ansiblePlaybook(
colorized: true,
playbook: 'infrastructure/init.yml'
)
}
stage('Run Test Unit'){
ansiblePlaybook(
colorized: true,
playbook: 'infrastructure/test.yml'
)
}
stage('Build Artefact'){
ansiblePlaybook(
colorized: true,
playbook: 'infrastructure/build.yml'
)
}
stage('Deploy Artefact'){
ansiblePlaybook(
colorized: true,
playbook: 'infrastructure/deploy.yml'
)
}
stage('Settings network'){
ansiblePlaybook(
colorized: true,
playbook: 'infrastructure/network.yml'
)
}
}