@@ -19,11 +19,50 @@ variables:
19
19
DOTNET_SKIP_FIRST_TIME_EXPERIENCE : " true"
20
20
21
21
jobs :
22
- - template : pipeline/cake.yml@rsg
22
+ - job : GitVersion
23
+ pool :
24
+ vmImage : " VS2017-Win2016"
25
+ steps :
26
+ - template : ../gitversion/store.yml
27
+ parameters :
28
+ NuGetVersion : $(NuGetVersion)
29
+
30
+ # Mac job seems to hang with unit tests currently, needs more testing (also need a mac)
31
+ # - template: cake-job.yml
32
+ # parameters:
33
+ # name: 'macOS'
34
+ # dependsOn: GitVersion
35
+ # vmImage: "macOS-10.13"
36
+ # pushNuget: false
37
+ # Configuration: $(Configuration)
38
+ # Verbosity: $(Verbosity)
39
+ # CakeVersion: $(CakeVersion)
40
+ # DotNetVersion: $(DotNetVersion)
41
+ # NuGetVersion: $(NuGetVersion)
42
+ # Script: build.cake
43
+
44
+ - template : cake-job.yml
23
45
parameters :
46
+ name : ' Linux'
47
+ dependsOn : GitVersion
48
+ vmImage : " Ubuntu-16.04"
49
+ pushNuget : false
24
50
Configuration : $(Configuration)
25
51
Verbosity : $(Verbosity)
52
+ CakeVersion : $(CakeVersion)
26
53
DotNetVersion : $(DotNetVersion)
54
+ NuGetVersion : $(NuGetVersion)
55
+ Script : build.cake
56
+
57
+ - template : cake-job.yml
58
+ parameters :
59
+ name : ' Windows'
60
+ dependsOn : GitVersion
61
+ vmImage : " VS2017-Win2016"
62
+ pushNuget : true
63
+ Configuration : $(Configuration)
64
+ Verbosity : $(Verbosity)
27
65
CakeVersion : $(CakeVersion)
66
+ DotNetVersion : $(DotNetVersion)
28
67
NuGetVersion : $(NuGetVersion)
29
68
Script : build.cake
0 commit comments