-
Notifications
You must be signed in to change notification settings - Fork 235
/
azure-pipelines.yml
128 lines (108 loc) · 3.66 KB
/
azure-pipelines.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
# AppCenter CLI
#
# Triggers are configured in the UI
jobs:
- job:
pool:
vmImage: 'ubuntu-latest'
steps:
- task: NodeTool@0
inputs:
versionSpec: '14.x'
displayName: 'Install Node.js'
- script: |
npm ci
npm run build
displayName: 'Install and build'
- task: ComponentGovernanceComponentDetection@0
displayName: Component Governance (PR)
inputs:
scanType: 'Register'
verbosity: 'Verbose'
alertWarningLevel: 'High'
failOnAlert: false
ignoreDirectories: '$(COMPONENT_GOVERNANCE_IGNORE_DIRS)'
condition: and(succeeded(), eq(variables['Build.Reason'], 'PullRequest'))
- task: ComponentGovernanceComponentDetection@0
displayName: Component Governance (CI)
inputs:
scanType: 'Register'
verbosity: 'Verbose'
alertWarningLevel: 'Medium'
failOnAlert: false
condition: and(succeeded(), ne(variables['Build.Reason'], 'PullRequest'))
- script: |
npm run test:ci || [ -f './test-results.xml' ]
displayName: 'Run CLI tests (with JUnit output)'
- task: PublishTestResults@2
inputs:
testResultsFormat: 'JUnit'
testResultsFiles: 'test-results.xml'
searchFolder: '$(Build.SourcesDirectory)'
failTaskOnFailedTests: true
testRunTitle: 'CLI unit tests'
displayName: 'Verify CLI unit test result'
- script: |
npm ci
npm run build
displayName: 'Install and build appcenter-file-upload-client-node'
workingDirectory: appcenter-file-upload-client-node
- script: |
npm run test:ci || [ -f './test-results.xml' ]
displayName: 'Run appcenter-file-upload-client-node tests'
workingDirectory: appcenter-file-upload-client-node
- task: PublishTestResults@2
inputs:
testResultsFormat: 'JUnit'
testResultsFiles: 'test-results.xml'
searchFolder: '$(Build.SourcesDirectory)/appcenter-file-upload-client-node'
failTaskOnFailedTests: true
testRunTitle: 'appcenter-file-upload-client-node unit tests'
displayName: 'Verify appcenter-file-upload-client-node unit test result'
- script: |
npm pack
npm install -g appcenter-cli*.tgz
displayName: 'Package appcenter-cli'
- task: AzureKeyVault@1
inputs:
azureSubscription: '$(API_TOKEN_KEY_VAULT_AZURE_SUBSCRIPTION)'
KeyVaultName: '$(API_TOKEN_KEY_VAULT)'
SecretsFilter: 'ac-cli-account-api-token'
- task: PowerShell@2
inputs:
filePath: '$(Build.SourcesDirectory)/test/functional/Invoke-FunctionalTests.ps1'
arguments: '-Token $(ac-cli-account-api-token)'
pwsh: true
displayName: 'Run functional tests'
- script: |
[ -f './test/functional/testresult.xml' ]
displayName: 'Verify that functional test result file exists'
- task: PublishTestResults@2
inputs:
testResultsFormat: 'NUnit'
testResultsFiles: 'testresult.xml'
searchFolder: '$(Build.SourcesDirectory)/test/functional'
failTaskOnFailedTests: true
testRunTitle: 'Functional tests'
displayName: 'Verify functional test result'
- script: |
npm pack
displayName: 'Package for npm release'
- task: DeleteFiles@1
inputs:
contents: node_modules
displayName: 'Delete node_modules'
- task: ArchiveFiles@2
inputs:
rootFolderOrFile: '$(Build.SourcesDirectory)'
includeRootFolder: false
archiveType: 'tar'
archiveFile: '$(Build.ArtifactStagingDirectory)/npm/$(Build.BuildId).tgz'
replaceExistingArchive: true
verbose: true
displayName: 'Prepare npm artifact'
- task: PublishBuildArtifacts@1
inputs:
PathtoPublish: '$(Build.ArtifactStagingDirectory)/npm'
ArtifactName: 'npm'
displayName: 'Publish npm artifact'