Skip to content

Commit f2fedf7

Browse files
committed
Cleanup indentation for .yamato jobs
Before I start to make actual modifications
1 parent bcd32e7 commit f2fedf7

File tree

4 files changed

+71
-70
lines changed

4 files changed

+71
-70
lines changed

.yamato/linux-build.yml

Lines changed: 14 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,19 @@
11
name: Linux - Build & Test VCS plugins
22
agent:
3-
type: Unity::VM
4-
image: cds-ops/ubuntu-16.04-katana-agent
5-
flavor: b1.large
3+
type: Unity::VM
4+
image: cds-ops/ubuntu-16.04-katana-agent
5+
flavor: b1.large
66

77
commands:
8-
- hg clone --config extensions.largefiles= http://hg-mirror-slo.hq.unity3d.com/unity-extra/perforce PerforceBinaries
9-
- perl build.pl | tee linux_build.txt
10-
- perl build.pl -test | tee linux_test.txt
8+
- hg clone --config extensions.largefiles= http://hg-mirror-slo.hq.unity3d.com/unity-extra/perforce PerforceBinaries
9+
- perl build.pl | tee linux_build.txt
10+
- perl build.pl -test | tee linux_test.txt
11+
1112
artifacts:
12-
builds:
13-
paths:
14-
- "Build/linux64/PerforcePlugin"
15-
logs:
16-
paths:
17-
- "linux_build.txt"
18-
- "linux_test.txt"
13+
builds:
14+
paths:
15+
- "Build/linux64/PerforcePlugin"
16+
logs:
17+
paths:
18+
- "linux_build.txt"
19+
- "linux_test.txt"

.yamato/osx-build.yml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
name: Mac - Build & Test VCS plugins
22
agent:
3-
type: Unity::VM::osx
4-
image: desktop/unity-macos-10.15-xcode-12.2:stable
5-
flavor: b1.large
3+
type: Unity::VM::osx
4+
image: desktop/unity-macos-10.15-xcode-12.2:stable
5+
flavor: b1.large
66

77
commands:
8-
- hg clone --config extensions.largefiles= http://hg-mirror-slo.hq.unity3d.com/unity-extra/perforce PerforceBinaries
9-
- perl build.pl | tee mac_build.txt
10-
- perl build.pl -test | tee mac_test.txt
8+
- hg clone --config extensions.largefiles= http://hg-mirror-slo.hq.unity3d.com/unity-extra/perforce PerforceBinaries
9+
- perl build.pl | tee mac_build.txt
10+
- perl build.pl -test | tee mac_test.txt
1111

1212
artifacts:
13-
builds:
14-
paths:
15-
- "Build/OSXx64/PerforcePlugin"
16-
logs:
17-
paths:
18-
- "mac_build.txt"
19-
- "mac_test.txt"
13+
builds:
14+
paths:
15+
- "Build/OSXx64/PerforcePlugin"
16+
logs:
17+
paths:
18+
- "mac_build.txt"
19+
- "mac_test.txt"

.yamato/windows-build.yml

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
name: Win - Build & Test VCS plugins
22
agent:
3-
type: Unity::VM
4-
image: core-kaunas/win10-vs2010:latest
5-
flavor: b1.large
6-
7-
interpreter: powershell
3+
type: Unity::VM
4+
image: core-kaunas/win10-vs2010:latest
5+
flavor: b1.large
6+
7+
interpreter: powershell
88
commands:
9-
- perl build.pl | tee win_build.txt
10-
- hg clone --config extensions.largefiles= http://hg-mirror-slo.hq.unity3d.com/unity-extra/perforce PerforceBinaries
11-
- perl build.pl -test | tee win_test.txt
12-
9+
- perl build.pl | tee win_build.txt
10+
- hg clone --config extensions.largefiles= http://hg-mirror-slo.hq.unity3d.com/unity-extra/perforce PerforceBinaries
11+
- perl build.pl -test | tee win_test.txt
12+
1313
artifacts:
14-
builds:
15-
paths:
16-
- "Build/Win32/PerforcePlugin.exe"
17-
- "Build/Win32/PerforcePlugin.pdb"
18-
logs:
19-
paths:
20-
- "win_build.txt"
21-
- "win_test.txt"
14+
builds:
15+
paths:
16+
- "Build/Win32/PerforcePlugin.exe"
17+
- "Build/Win32/PerforcePlugin.pdb"
18+
logs:
19+
paths:
20+
- "win_build.txt"
21+
- "win_test.txt"

.yamato/zipVCSPlugins.yml

Lines changed: 27 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,35 @@
11
name: Zip VCS plugins
22
agent:
3-
type: Unity::VM
4-
image: core-kaunas/win10-vs2010:latest
5-
flavor: b1.small
3+
type: Unity::VM
4+
image: core-kaunas/win10-vs2010:latest
5+
flavor: b1.small
66

7-
interpreter: powershell
7+
interpreter: powershell
88
commands:
9-
- mkdir linux64
10-
- mkdir OSXx64
11-
- mkdir Win32
12-
- Copy-Item Build/linux64/* linux64 -Recurse
13-
- Copy-Item Build/OSXx64/* OSXx64 -Recurse
14-
- Copy-Item Build/Win32/* Win32 -Recurse
15-
9+
- mkdir linux64
10+
- mkdir OSXx64
11+
- mkdir Win32
12+
- Copy-Item Build/linux64/* linux64 -Recurse
13+
- Copy-Item Build/OSXx64/* OSXx64 -Recurse
14+
- Copy-Item Build/Win32/* Win32 -Recurse
15+
1616
artifacts:
17-
builds:
18-
paths:
19-
- "linux64/**"
20-
- "OSXx64/**"
21-
- "Win32/**"
22-
17+
builds:
18+
paths:
19+
- "linux64/**"
20+
- "OSXx64/**"
21+
- "Win32/**"
22+
2323
dependencies:
24-
- .yamato/windows-build.yml
25-
- .yamato/linux-build.yml
26-
- .yamato/osx-build.yml
27-
24+
- .yamato/windows-build.yml
25+
- .yamato/linux-build.yml
26+
- .yamato/osx-build.yml
27+
2828
triggers:
29-
branches:
30-
only:
29+
branches:
30+
only:
3131
- "/.*/"
32-
pull_requests:
33-
- sources:
34-
only:
35-
- "/.*/"
32+
pull_requests:
33+
- sources:
34+
only:
35+
- "/.*/"

0 commit comments

Comments
 (0)