-
Notifications
You must be signed in to change notification settings - Fork 0
/
azure-pipelines.yml
75 lines (60 loc) · 1.86 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
# .NET Desktop
# Build and run tests for .NET Desktop or Windows classic desktop solutions.
# Add steps that publish symbols, save build artifacts, and more:
# https://docs.microsoft.com/azure/devops/pipelines/apps/windows/dot-net
trigger:
- master
pool:
vmImage: 'windows-latest'
variables:
- template: shared.yml
parameters:
buildName: foo
majorVersion: 2
minorVersion: 2
- name: solution
value: '**/*.sln'
- name: buildPlatform
value: 'Any CPU'
- name: buildConfiguration
value: 'Release'
name: ${{variables.buildName}}
steps:
- checkout: self
persistCredentials: true
- task: Bash@3
inputs:
targetType: 'inline'
script: 'env | sort'
#- ${{ each value in variables }}:
# - script: echo ${{ value.key }} ${{value.value}}
# - task: NuGetToolInstaller@1
#- task: CmdLine@2
# inputs:
# script: 'sqlcmd -l 60 -S "(localdb)\MSSQLLocalDB" -Q "SELECT @@VERSION;"'
#- task: PowerShell@2
# inputs:
# targetType: 'inline'
# script: |
# Write-Host "Downloading"
# Import-Module BitsTransfer
# Start-BitsTransfer -Source https://download.microsoft.com/download/7/c/1/7c14e92e-bdcb-4f89-b7cf-93543e7112d1/SqlLocalDB.msi -Destination SqlLocalDB.msi
# Write-Host "Installing"
# Start-Process -FilePath "SqlLocalDB.msi" -Wait -ArgumentList "/qn", "/norestart", "/l*v SqlLocalDBInstall.log", "IACCEPTSQLLOCALDBLICENSETERMS=YES";
#- task: CmdLine@2
# inputs:
# script: 'sqlcmd -S "(localdb)\MSSQLLocalDB" -Q "SELECT @@VERSION;"'
#- task: NuGetCommand@2
# inputs:
# restoreSolution: '$(solution)'
#- task: VSBuild@1
# inputs:
# solution: '$(solution)'
# platform: '$(buildPlatform)'
# configuration: '$(buildConfiguration)'
- script: |
git tag $(buildName)
git push origin $(buildName)
displayName: Tag Source
condition: ${{variables.pushToOctopus}}
workingDirectory: $(Build.SourcesDirectory)