Skip to content
This repository was archived by the owner on Apr 29, 2024. It is now read-only.

Commit 3bfdde5

Browse files
committed
2 parents 3517357 + 520f93f commit 3bfdde5

File tree

1 file changed

+44
-0
lines changed

1 file changed

+44
-0
lines changed

azure-pipelines.yml

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
jobs:
2+
- job: build_ios_samples
3+
displayName: Build iOS samples
4+
pool:
5+
vmImage: 'macos-latest'
6+
steps:
7+
# To manually select a Xamarin SDK version on the Microsoft-hosted macOS agent,
8+
# configure this task with the *Mono* version that is associated with the
9+
# Xamarin SDK version that you need, and set the "enabled" property to true.
10+
# See https://go.microsoft.com/fwlink/?linkid=871629
11+
- script: sudo $AGENT_HOMEDIRECTORY/scripts/select-xamarin-sdk.sh 5_12_0
12+
displayName: 'Select the Xamarin SDK version'
13+
enabled: false
14+
- task: MSBuild@1
15+
displayName: Build iOS samples
16+
inputs:
17+
solution: '**/*.iOS.csproj'
18+
configuration: 'Debug'
19+
msbuildArguments: '/restore /t:Build /p:ContinuousIntegrationBuild=true /p:Deterministic=false'
20+
- job: build_android_samples
21+
displayName: Build Android samples
22+
pool:
23+
vmImage: 'macos-latest'
24+
steps:
25+
- script: sudo $AGENT_HOMEDIRECTORY/scripts/select-xamarin-sdk.sh 5_12_0
26+
displayName: 'Select the Xamarin SDK version'
27+
enabled: false
28+
- task: MSBuild@1
29+
displayName: Build Android samples
30+
inputs:
31+
solution: '**/*Droid*.csproj'
32+
configuration: 'Debug'
33+
msbuildArguments: '/restore /t:Build /p:ContinuousIntegrationBuild=true /p:Deterministic=false'
34+
- job: build_uwp_samples
35+
displayName: Build UWP samples
36+
pool:
37+
vmImage: windows-2019
38+
steps:
39+
- task: MSBuild@1
40+
displayName: Build UWP samples
41+
inputs:
42+
solution: '**/*.UWP.csproj'
43+
configuration: 'Debug'
44+
msbuildArguments: '/restore /t:Build /p:AppxPackage=false /p:ContinuousIntegrationBuild=true /p:Deterministic=false'

0 commit comments

Comments
 (0)