-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathbamboo-server.json
53 lines (53 loc) · 1.44 KB
/
bamboo-server.json
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
{
"builders": [
{
"type": "amazon-ebs",
"region": "eu-west-1",
"instance_type": "t2.micro",
"ami_name": "Bamboo Server 6.1 {{timestamp}}",
"user_data_file": "./scripts/SetUpWinRM.ps1",
"communicator": "winrm",
"winrm_username": "Administrator",
"winrm_use_ssl": true,
"winrm_insecure": true,
"source_ami_filter": {
"filters": {
"name": "Windows_Server-2012-R2_RTM-English-64Bit-Base-*"
},
"owners": ["801119661308"],
"most_recent": true
}
}
],
"provisioners": [
{
"type": "powershell",
"scripts": [
"./scripts/EC2Config.ps1",
"./scripts/BundleConfig.ps1",
"./scripts/SetUpDevTools.ps1",
"./scripts/InstallBambooServer.ps1"
]
},
{
"type": "file",
"source": "./tests",
"destination": "C:/Windows/Temp"
},
{
"type": "powershell",
"script": "./scripts/RunTests.ps1"
},
{
"type": "file",
"source": "TestResults.xml",
"destination": "TestResults.xml",
"direction": "download"
}
],
"post-processors": [
{
"type": "manifest"
}
]
}