-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathJenkinsfile
81 lines (81 loc) · 2.37 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
77
78
79
80
81
pipeline {
agent any
stages {
// stage('Verify Branch') {
// steps {
// echo "$GIT_BRANCH"
// }
// }
stage('Pull Changes') {
steps {
powershell(script: "git pull")
}
}
stage('Run Unit Tests') {
steps {
powershell(script: """
cd Server
dotnet test
cd ..
""")
}
}
stage('Docker Build') {
steps {
powershell(script: 'docker-compose disable-v2')
powershell(script: 'docker-compose build')
// powershell(script: 'docker build -t ivaylokenov/carrentalsystem-user-client-development --build-arg configuration=development ./Client')
powershell(script: 'docker images -a')
}
}
stage('Run Test Application') {
steps {
powershell(script: 'docker-compose up -d')
}
}
stage('Run Integration Tests') {
steps {
powershell(script: './Tests/ContainerTests.ps1')
}
}
stage('Stop Test Application') {
steps {
powershell(script: 'docker-compose down')
// powershell(script: 'docker volumes prune -f')
}
post {
success {
echo "Build successfull! You should deploy! :)"
}
failure {
echo "Build failed! You should receive an e-mail! :("
}
}
}
stage('Push Images') {
when { branch 'main' }
steps {
script {
docker.withRegistry('https://index.docker.io/v1/', 'DockerHub') {
def image = docker.image("ivaylokenov/carrentalsystem-identity-service")
image.push("1.0.${env.BUILD_ID}")
image.push('latest')
}
}
}
}
stage('Deploy Development') {
when { branch 'main' }
steps {
withKubeConfig([credentialsId: 'DevelopmentServer', serverUrl: 'https://35.193.120.112']) {
powershell(script: 'kubectl apply -f ./.k8s/.environment/development.yml')
powershell(script: 'kubectl apply -f ./.k8s/databases')
powershell(script: 'kubectl apply -f ./.k8s/event-bus')
powershell(script: 'kubectl apply -f ./.k8s/web-services')
powershell(script: 'kubectl apply -f ./.k8s/clients')
powershell(script: 'kubectl set image deployments/user-client user-client=ivaylokenov/carrentalsystem-user-client-development:latest')
}
}
}
}
}