-
Notifications
You must be signed in to change notification settings - Fork 5
/
azure-pipelines-2.yml
40 lines (31 loc) · 1016 Bytes
/
azure-pipelines-2.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# Xamarin.Android
# Build a Xamarin.Android project.
# Add steps that test, sign, and distribute an app, save build artifacts, and more:
# https://docs.microsoft.com/azure/devops/pipelines/languages/xamarin
trigger:
- master
pool:
vmImage: 'macos-latest'
variables:
buildConfiguration: 'Release'
outputDirectory: '$(build.binariesDirectory)/$(buildConfiguration)'
steps:
- task: NuGetToolInstaller@1
- task: NuGetCommand@2
inputs:
restoreSolution: '**/*.sln'
- task: XamarinAndroid@1
inputs:
projectFile: '**/*droid*.csproj'
outputDirectory: '$(outputDirectory)'
- task: AppCenterTest@1
inputs:
appFile: '$(build.binariesDirectory)/$(buildConfiguration)'
artifactsDirectory: '$(Build.ArtifactStagingDirectory)/AppCenterTest'
frameworkOption: 'uitest'
uiTestBuildDirectory: 'LadyBug/UITest/bin/Release'
credentialsOption: 'serviceEndpoint'
serverEndpoint: 'app center'
appSlug: 'Cod-Org/LadyBug'
devices: 'Cod-Org/master'
localeOption: 'en_US'