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

Commit 465e038

Browse files
committed
Update azure-pipelines.yml for Azure Pipelines
1 parent 985ed79 commit 465e038

File tree

1 file changed

+19
-27
lines changed

1 file changed

+19
-27
lines changed

azure-pipelines.yml

Lines changed: 19 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,19 @@
1-
# Xamarin.iOS
2-
# Build a Xamarin.iOS project.
3-
# Add steps that install certificates, test, sign, and distribute an app, save build artifacts, and more:
4-
# https://docs.microsoft.com/azure/devops/pipelines/languages/xamarin
5-
6-
trigger:
7-
- master
8-
9-
pool:
10-
vmImage: 'macos-latest'
11-
12-
steps:
13-
# To manually select a Xamarin SDK version on the Microsoft-hosted macOS agent,
14-
# configure this task with the *Mono* version that is associated with the
15-
# Xamarin SDK version that you need, and set the "enabled" property to true.
16-
# See https://go.microsoft.com/fwlink/?linkid=871629
17-
- script: sudo $AGENT_HOMEDIRECTORY/scripts/select-xamarin-sdk.sh 5_12_0
18-
displayName: 'Select the Xamarin SDK version'
19-
enabled: false
20-
21-
- task: MSBuild@1
22-
displayName: Build iOS samples
23-
inputs:
24-
solution: '**/*.iOS.csproj'
25-
configuration: 'Debug'
26-
msbuildArguments: '/restore /t:Build'
27-
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'

0 commit comments

Comments
 (0)