Skip to content

Commit cb66851

Browse files
Update azure-pipelines.yml
1 parent d74232d commit cb66851

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

Diff for: azure-pipelines.yml

+6-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
jobs:
1+
jobs:
22
- job: Linux
33
pool:
44
vmImage: 'ubuntu-18.04'
55
variables:
66
buildConfiguration: 'Release'
77
steps:
8-
- script: cd $(Build.SourcesDirectory) && bash ./build.sh
8+
- script: cd $(Build.SourcesDirectory) && dotnet build
99
displayName: 'Linux Build and Tests'
1010
- task: PublishTestResults@2
1111
inputs:
@@ -18,7 +18,10 @@
1818
variables:
1919
buildConfiguration: 'Release'
2020
steps:
21-
- script: cd $(Build.SourcesDirectory) && powershell -ExecutionPolicy Unrestricted ./build.ps1 --full
21+
- task: DotNetCoreInstaller@0
22+
inputs:
23+
version: '3.1.302'
24+
- script: cd $(Build.SourcesDirectory) && dotnet build
2225
displayName: 'Windows Full Build and Tests'
2326
- task: PublishTestResults@2
2427
inputs:

0 commit comments

Comments
 (0)