-
Notifications
You must be signed in to change notification settings - Fork 1
/
Jenkinsfile
54 lines (54 loc) · 1.16 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
pipeline {
environment {
registry = "guardian16/nimhans"
registryCredential = 'dockerhub-creds'
dockerImage = ''
}
agent any
stages {
stage('Installing Dependencies') {
steps {
sh "npm install"
}
}
stage('Testing Phase') {
steps {
sh'''
echo 'hello world' '''
}
}
stage('Building Angular Application') {
steps {
sh "ng build --prod --aot"
logstashSend failBuild: true, maxLines: 1000
}
}
stage('Building Docker Image') {
steps {
script {
dockerImage = docker.build registry + ":latest"
}
}
}
stage('Publishing Docker Image') {
steps {
script {
docker.withRegistry( '', registryCredential ) {
dockerImage.push()
}
}
}
}
stage('Trigger Rundeck'){
steps {
build 'rundeck-test'
}
}
stage('Monitoring Phase'){
steps {
build 'logging'
logstashSend failBuild: true, maxLines: 1000
}
}
}
}