-
Notifications
You must be signed in to change notification settings - Fork 155
/
azure-pipelines.yml
56 lines (53 loc) · 1.38 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
trigger:
- main
pr:
- main
pool:
vmImage: 'windows-latest'
steps:
- task: DotNetCoreCLI@2
displayName: 'Build ASP.NET Core quickstart'
continueOnError: true
inputs:
command: 'build'
workingDirectory: 'quickstart\aspnet-core\ContosoTeamStats'
- task: NuGetCommand@2
continueOnError: true
displayName: 'NuGet restore ASP.NET quickstart'
inputs:
command: 'restore'
restoreSolution: 'quickstart\aspnet\*.sln'
- task: VSBuild@1
continueOnError: true
displayName: 'Build ASP.NET quickstart'
inputs:
solution: 'quickstart\aspnet\*.sln'
- task: DotNetCoreCLI@2
continueOnError: true
displayName: 'Build .NET Core quickstart'
inputs:
command: 'build'
workingDirectory: 'quickstart\dotnet-core'
- task: NuGetCommand@2
continueOnError: true
displayName: 'NuGet restore .NET quickstart'
inputs:
command: 'restore'
restoreSolution: 'quickstart\dotnet\*.sln'
- task: VSBuild@1
continueOnError: true
displayName: 'Build .NET quickstart'
inputs:
solution: 'quickstart\dotnet\*.sln'
- task: Maven@3
continueOnError: true
displayName: 'Build Java quickstart'
inputs:
mavenPOMFile: 'quickstart\java\redistest\pom.xml'
goals: 'compile'
#- task: Maven@3
# continueOnError: true
# displayName: 'Build Java Redisson quickstart'
# inputs:
# mavenPOMFile: 'quickstart\java-redisson\redis-redisson-test\pom.xml'
# goals: 'compile'