forked from tomaszzmuda/Xabe.FFmpeg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
azure-pipelines.yml
160 lines (149 loc) · 5.56 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
# Cli Version: 1.3.5
name: $(Date:yyyy).$(Date:MM).$(Date:dd)$(Rev:.r)
trigger:
batch: true
branches:
include:
- master
pr:
- master
pool:
name: Default
parameters:
- name: Tag
default: $(Build.BuildNumber)
variables:
BuildConfiguration: 'Release'
ArtifactStagingDirectory: '$(Build.ArtifactStagingDirectory)'
ArtifactName: 'drop'
stages:
- stage: build
displayName: Build and test
jobs:
- job: waitForValidation
displayName: Wait for external validation
timeoutInMinutes: 4320
pool: server
steps:
- task: ManualValidation@0
timeoutInMinutes: 4320
inputs:
notifyUsers: |
onTimeout: 'reject'
- job: run_tests
timeoutInMinutes: 60
dependsOn: waitForValidation
displayName: Run tests
steps:
- task: UseDotNet@2
displayName: 'Set .NET Core to 3.1'
inputs:
packageType: sdk
version: 3.1.x
installationPath: $(Agent.ToolsDirectory)/dotnet
- task: DotNetCoreCLI@2
displayName: 'dotnet test'
inputs:
command: test
projects: '**/Xabe.FFmpeg.Test.csproj'
arguments: '-c ${{ variables.BuildConfiguration }} -v=normal'
publishTestResults: true
- job: run_downloader_tests
timeoutInMinutes: 120
dependsOn: waitForValidation
displayName: Run downloader tests
steps:
- task: UseDotNet@2
displayName: 'Set .NET Core to 3.1'
inputs:
packageType: sdk
version: 3.1.x
installationPath: $(Agent.ToolsDirectory)/dotnet
- task: DotNetCoreCLI@2
displayName: 'dotnet test'
inputs:
command: test
projects: '**/Xabe.FFmpeg.Downloader.Test.csproj'
arguments: '-c ${{ variables.BuildConfiguration }} -v=normal'
publishTestResults: true
- job: build_artifacts
timeoutInMinutes: 60
dependsOn: waitForValidation
displayName: Build artifacts
steps:
- task: UseDotNet@2
displayName: 'Set .NET Core to 3.1'
inputs:
packageType: sdk
version: 3.1.x
installationPath: $(Agent.ToolsDirectory)/dotnet
- powershell: |
echo ${{ parameters.Tag }}
dotnet build -c ${{ variables.BuildConfiguration }} -p:Version=${{ parameters.Tag }} /p:GenerateDocumentationFile=true
failOnStderr: true
workingDirectory: ./src/Xabe.FFmpeg
displayName: 'Dotnet build'
- powershell: |
dotnet pack --no-build -c ${{ variables.BuildConfiguration }} -o ${{ variables.ArtifactStagingDirectory }} /p:PackageVersion=${{ parameters.Tag }} /p:GenerateDocumentationFile=true
failOnStderr: true
workingDirectory: ./src/Xabe.FFmpeg
displayName: 'Dotnet pack'
- powershell: |
dotnet build -c ${{ variables.BuildConfiguration }} -p:Version=${{ parameters.Tag }} /p:GenerateDocumentationFile=true
failOnStderr: true
workingDirectory: ./src/Xabe.FFmpeg.Downloader
displayName: 'Dotnet build downloader'
- powershell: |
dotnet pack --no-build -c ${{ variables.BuildConfiguration }} -o ${{ variables.ArtifactStagingDirectory }} /p:PackageVersion=${{ parameters.Tag }} /p:GenerateDocumentationFile=true
failOnStderr: true
workingDirectory: ./src/Xabe.FFmpeg.Downloader
displayName: 'Dotnet pack downloader'
- publish: ${{ variables.ArtifactStagingDirectory }}
artifact: '${{ variables.ArtifactName }}'
- stage: test_release
displayName: "Deploy to test feed"
condition: succeeded()
jobs:
- job:
workspace:
clean: all
displayName: Release to test feed
steps:
- checkout: none
- download: current
- task: UseDotNet@2
displayName: 'Set .NET Core to 3.1'
inputs:
packageType: sdk
version: 3.1.x
installationPath: $(Agent.ToolsDirectory)/dotnet
- task: NuGetAuthenticate@0
inputs:
nuGetServiceConnections: ''
- powershell: |
dotnet nuget push "*.nupkg" --api-key az --skip-duplicate --source https://xabe.pkgs.visualstudio.com/ffmpeg/_packaging/ffmpeg/nuget/v3/index.json
workingDirectory: '$(Pipeline.Workspace)/${{ variables.ArtifactName }}'
displayName: 'dotnet push'
- stage: prod_release
displayName: "Deploy to NuGet"
condition: and(and(succeeded(), ne(variables['Build.Reason'], 'PullRequest')), ne('${{ parameters.Tag }}', '$(Build.BuildNumber)'))
jobs:
- job:
variables:
- group: NuGet
workspace:
clean: all
steps:
- checkout: none
- download: current
- task: UseDotNet@2
displayName: 'Set .NET Core to 3.1'
inputs:
packageType: sdk
version: 3.1.x
installationPath: $(Agent.ToolsDirectory)/dotnet
- powershell: |
dotnet nuget push "*.nupkg" --api-key $(NUGET_ORG) --skip-duplicate -s https://api.nuget.org/v3/index.json
workingDirectory: '$(Pipeline.Workspace)/${{ variables.ArtifactName }}'
displayName: 'dotnet push'