forked from folio-org/folio-perf-test
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Jenkinsfile.folioci
75 lines (63 loc) · 2.77 KB
/
Jenkinsfile.folioci
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
#!groovy
properties([
parameters([
string(name: 'EnvName', defaultValue: 'folio-perf-test', description: 'Unique performance environment name'),
string(name: 'JenkinsAwsCredential', defaultValue: 'jenkins-aws', description: 'Jenkins credential to access AWS account'),
string(name: 'JenkinsEc2Credential', defaultValue: '11657186-f4d4-4099-ab72-2a32e023cced', description: 'Jenkins credential to SSH into AWS EC2'),
string(name: 'AwsKeyPair', defaultValue: 'aws-sling-dev', description: 'Aws KeyPair name for EC2 instances'),
string(name: 'AwsSubnet', defaultValue: 'subnet-4406021d', description: 'AWS Subnet to create EC2 instances'),
string(name: 'AwsSecurityGroups', defaultValue: 'sg-7ea9ef35', description: 'AWS VPC Security Groups to use'),
string(name: 'AwsUsePublicIp', defaultValue: 'Yes', description: 'AWS EC2 has public IP or not'),
string(name: 'MdRepo', defaultValue: 'http://folio-registry.aws.indexdata.com', description: 'Module descriptor repository'),
string(name: 'StableFolio', defaultValue: 'http://folio-snapshot-stable.aws.indexdata.com', description: 'Use stable version of modules'),
string(name: 'SampleDataRepo', defaultValue: 'https://s3.amazonaws.com/folio-public-sample-data', description: 'Sample data repository'),
string(name: 'SampleDataName', defaultValue: 'perf', description: 'Sample dataset name'),
])
])
def sharedLib
def context
node('folio-perf-test') {
timeout(180) {
stage("Checkout") {
cleanWs()
checkout scm
sharedLib = load "shared.groovy"
context = sharedLib.getContext()
}
withCredentials([[$class: 'AmazonWebServicesCredentialsBinding', credentialsId: "${context.awsKeyId}",
accessKeyVariable: 'AWS_ACCESS_KEY_ID', secretKeyVariable: 'AWS_SECRET_ACCESS_KEY']]) {
sshagent(credentials:["${context.sshKeyId}"]) {
try {
stage("Create Environment") {
sharedLib.createEnv(context)
}
stage("Wait for Environment") {
sharedLib.waitForEnv(context)
}
stage("Bootstrap DB") {
sharedLib.bootstrapDb(context)
}
stage("Bootstrap Okapi") {
sharedLib.bootstrapOkapi(context)
}
stage("Bootstrap modules") {
sharedLib.bootstrapModules(context)
}
stage("Populate data") {
sharedLib.populateData(context)
}
stage("Running JMeter tests") {
withEnv(['PATH+JMETER_PATH=/usr/local/apache-jmeter/bin']) {
echo "PATH is: $env.PATH"
sharedLib.runJmeterTests(context)
}
}
} finally {
stage("Tear down environment") {
sharedLib.teardownEnv(context)
}
}
}
}
}
}