We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d74232d commit cb66851Copy full SHA for cb66851
azure-pipelines.yml
@@ -1,11 +1,11 @@
1
- jobs:
+jobs:
2
- job: Linux
3
pool:
4
vmImage: 'ubuntu-18.04'
5
variables:
6
buildConfiguration: 'Release'
7
steps:
8
- - script: cd $(Build.SourcesDirectory) && bash ./build.sh
+ - script: cd $(Build.SourcesDirectory) && dotnet build
9
displayName: 'Linux Build and Tests'
10
- task: PublishTestResults@2
11
inputs:
@@ -18,7 +18,10 @@
18
19
20
21
- - script: cd $(Build.SourcesDirectory) && powershell -ExecutionPolicy Unrestricted ./build.ps1 --full
+ - task: DotNetCoreInstaller@0
22
+ inputs:
23
+ version: '3.1.302'
24
25
displayName: 'Windows Full Build and Tests'
26
27
0 commit comments