-
Notifications
You must be signed in to change notification settings - Fork 6
/
Jenkinsfile
63 lines (51 loc) · 986 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
pipeline {
agent any
triggers {
githubPush()
}
environment {
DOCKERHUB_CREDENTIALS=credentials('Dockerhub')
}
stages{
stage("unit test"){
agent {
docker {
image 'node:16.17.1'
reuseNode true
}
}
steps {
echo "hello"
sh "npm cache clean --force"
sh "npm i"
sh "npm run test"
// timeout(time: 20, unit: 'SECONDS') {sh "npm run serve"}
}
}
stage('Build') {
steps {
sh 'docker build -t waer/frontend:latest .'
}
}
stage("intgration testing"){
steps {
echo "i will let it here as example of succes pipline"
}
}
stage('Login') {
steps {
sh 'echo $DOCKERHUB_CREDENTIALS_PSW | docker login -u $DOCKERHUB_CREDENTIALS_USR --password-stdin'
}
}
stage('Push') {
steps {
sh 'docker push waer/frontend:latest'
}
}
}
post {
always {
sh 'docker logout'
}
}
}