-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathJenkinsfile
94 lines (74 loc) · 2.7 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
82
83
84
85
86
87
88
89
90
91
92
93
94
import hudson.model.*;
import hudson.util.*;
import hudson.scm.*;
import hudson.plugins.accurev.*
//def thr = Thread.currentThread();
//def build = thr?.executable;
//def changeSet = build.getChangeSet();
//def changes = changeSet.getItems();
pipeline {
agent any
stages {
stage("Build") {
steps {
echo "Building.."
slackSend channel: 'ci', message: "Build #(<${env.BUILD_URL}|${env.BUILD_NUMBER}>) started for ${env.JOB_NAME}", tokenCredentialId: 'slack-integration-token'
// Allow ps1 files to be run ;)
bat "powershell Set-ExecutionPolicy unrestricted -Force"
// Debug print for execution policy.
bat "powershell Get-ExecutionPolicy"
dir("${WORKSPACE}/ci-scripts/windows/") {
// Install dependencies.
bat "powershell -file install-deps.ps1"
bat "powershell -file try-install-vagrant.ps1"
}
dir("${WORKSPACE}/") {
// Remove box files if they were changed in the most recent commit.
bat "ruby ci-scripts/ruby/remove-boxes-if-changed-in-most-recent-commit.rb"
}
dir("${WORKSPACE}/") {
// Validate Vagrantfile.
bat "vagrant validate"
}
dir("${WORKSPACE}/packer") {
// Create all missing packer box files.
bat "ruby build-missing.rb"
}
}
}
stage("Deploy") {
steps {
echo "Deploying...."
dir("${WORKSPACE}/") {
bat "vagrant up --provision"
}
}
}
stage("Test") {
steps {
echo "Testing.."
dir("${WORKSPACE}/ci-scripts/ruby") {
bat "ruby test-webserver.rb"
}
}
}
}
post {
always {
echo "Shutting down VMs..."
dir("${WORKSPACE}/") {
bat "vagrant halt"
}
}
failure {
echo "(not really) Destroying VMs as build has failed."
dir("${WORKSPACE}/") {
//bat "vagrant destroy -f"
}
slackSend channel: 'ci', message: "Build #(<${env.BUILD_URL}|${env.BUILD_NUMBER}>) failed! See Jenkins for the log.", tokenCredentialId: 'slack-integration-token'
}
success {
slackSend channel: 'ci', message: "Build #(<${env.BUILD_URL}|${env.BUILD_NUMBER}>) succeeded!", tokenCredentialId: 'slack-integration-token'
}
}
}