-
-
Notifications
You must be signed in to change notification settings - Fork 103
/
azure-pipelines.yml
74 lines (73 loc) · 2 KB
/
azure-pipelines.yml
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
# ----------------------
# <auto-generated>
#
# This file was generated with FlubuCore.
#
# To regenerate file execute 'flubu {{TargetName}} --ci={CIName}
#
# </auto-generated>
# ----------------------
jobs:
- job: windows_latest
pool:
vmimage: windows-latest
steps:
- task: DotNetCoreInstaller@1
displayName: Install .net core sdk
inputs:
version: 3.1.302
- script: dotnet tool install --global FlubuCore.Tool --version 5.1.8
displayName: Install flubu
- script: flubu buildVersion --nd
displayName: buildVersion
workingDirectory: src
- script: flubu compile --nd
displayName: compile
workingDirectory: src
- script: flubu test --nd
displayName: test
workingDirectory: src
- job: ubuntu_latest
pool:
vmimage: ubuntu-latest
steps:
- task: DotNetCoreInstaller@1
displayName: Install .net core sdk
inputs:
version: 3.1.302
- script: dotnet tool install --global FlubuCore.Tool --version 5.1.8
displayName: Install flubu
- script: flubu buildVersion --nd
displayName: buildVersion
workingDirectory: src
- script: flubu compile.linux --nd
displayName: compile.linux
workingDirectory: src
- script: flubu test.linux --nd
displayName: test.linux
workingDirectory: src
- script: flubu package.DotnetFlubu --nd
displayName: package.DotnetFlubu
workingDirectory: src
- job: macOs_latest
pool:
vmimage: macOs-latest
steps:
- task: DotNetCoreInstaller@1
displayName: Install .net core sdk
inputs:
version: 3.1.302
- script: dotnet tool install --global FlubuCore.Tool --version 5.1.8
displayName: Install flubu
- script: flubu buildVersion --nd
displayName: buildVersion
workingDirectory: src
- script: flubu compile.linux --nd
displayName: compile.linux
workingDirectory: src
- script: flubu test.linux --nd
displayName: test.linux
workingDirectory: src
- script: flubu package.DotnetFlubu --nd
displayName: package.DotnetFlubu
workingDirectory: src