2021-07-11 14:08:50 +02:00
|
|
|
# Xamarin.iOS
|
|
|
|
# Build a Xamarin.iOS project.
|
|
|
|
# Add steps that install certificates, test, sign, and distribute an app, save build artifacts, and more:
|
|
|
|
# https://docs.microsoft.com/azure/devops/pipelines/languages/xamarin
|
|
|
|
|
2021-07-15 18:52:00 +02:00
|
|
|
trigger:
|
|
|
|
- master
|
2021-07-11 14:08:50 +02:00
|
|
|
|
|
|
|
pool:
|
|
|
|
vmImage: 'macos-latest'
|
|
|
|
|
|
|
|
variables:
|
|
|
|
buildConfiguration: 'Release'
|
|
|
|
solutionName : 'TINK.sln'
|
|
|
|
|
|
|
|
steps:
|
|
|
|
# To manually select a Xamarin SDK version on the Microsoft-hosted macOS agent,
|
|
|
|
# configure this task with the *Mono* version that is associated with the
|
|
|
|
# Xamarin SDK version that you need, and set the "enabled" property to true.
|
|
|
|
# See https://go.microsoft.com/fwlink/?linkid=871629
|
|
|
|
- script: sudo $AGENT_HOMEDIRECTORY/scripts/select-xamarin-sdk.sh 5_12_0
|
|
|
|
displayName: 'Select the Xamarin SDK version'
|
|
|
|
enabled: false
|
|
|
|
|
2021-07-11 14:16:29 +02:00
|
|
|
# Get code from Open Source repo.
|
|
|
|
# https://docs.microsoft.com/en-us/azure/devops/pipelines/repos/multi-repo-checkout?view=azure-devops#specify-multiple-repositories
|
2021-08-11 14:18:40 +02:00
|
|
|
- checkout: git://sharee.bike App/Code
|
2021-07-11 14:08:50 +02:00
|
|
|
- task: NuGetToolInstaller@1
|
|
|
|
|
|
|
|
- task: NuGetCommand@2
|
|
|
|
inputs:
|
|
|
|
restoreSolution: '$(solutionName)'
|
|
|
|
- task: XamariniOS@2
|
|
|
|
inputs:
|
2021-07-12 21:43:58 +02:00
|
|
|
solutionFile: '$(solutionName)'
|
2021-07-11 14:08:50 +02:00
|
|
|
configuration: '$(buildConfiguration)'
|
|
|
|
packageApp: false
|
|
|
|
buildForSimulator: true
|
|
|
|
runNugetRestore: false
|