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

Commit 00db385

Browse files
committed
Set up CI with Azure Pipelines
[skip ci]
1 parent 88a52c0 commit 00db385

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed

azure-pipelines.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
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: NuGetToolInstaller@1
22+
23+
- task: NuGetCommand@2
24+
inputs:
25+
restoreSolution: '**/*.sln'
26+
27+
- task: XamariniOS@2
28+
inputs:
29+
solutionFile: '**/*.sln'
30+
configuration: 'Debug'
31+
buildForSimulator: true
32+
packageApp: false

0 commit comments

Comments
 (0)