We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 62a43f7 commit 6136bbbCopy full SHA for 6136bbb
1 file changed
azure-pipelines.yaml
@@ -0,0 +1,36 @@
1
+strategy:
2
+ matrix:
3
+ linux:
4
+ imageName: 'ubuntu-16.04'
5
+ mac:
6
+ imageName: 'macos-10.15'
7
+ windows:
8
+ imageName: 'windows-2019'
9
+
10
+pool:
11
+ vmImage: $(imageName)
12
13
+steps:
14
+- task: UseDotNet@2
15
+ displayName: 'Use .NET Core sdk 2.1.202'
16
+ inputs:
17
+ version: 2.1.202
18
19
20
+ displayName: 'Use .NET Core sdk'
21
22
+ useGlobalJson: true
23
24
+- task: Bash@3
25
+ displayName: 'Bash Script'
26
+ condition: ne( variables['Agent.OS'], 'Windows_NT' )
27
28
+ targetType: filePath
29
+ filePath: ./build.sh
30
31
+- task: PowerShell@2
32
+ displayName: 'PowerShell Script'
33
+ condition: eq( variables['Agent.OS'], 'Windows_NT' )
34
35
36
+ filePath: ./build.ps1
0 commit comments