-
Notifications
You must be signed in to change notification settings - Fork 0
/
azure-pipelines.yml
84 lines (69 loc) · 1.79 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
# Node.js with React
# Build a Node.js project that uses React.
# Add steps that analyze code, save build artifacts, deploy, and more:
# https://docs.microsoft.com/azure/devops/pipelines/languages/javascript
trigger:
- main
- master
strategy:
matrix:
mac:
imageName: 'macOS-latest'
windows:
imageName: 'windows-latest'
pool:
vmImage: $(imageName)
variables:
- name: distFolder
${{ if eq(variables['imageName'], 'windows-latest') }}:
value: 'win-unpacked'
${{ if eq(variables['imageName'], 'macOS-latest') }}:
value: 'mac'
steps:
- task: NodeTool@0
inputs:
versionSpec: '16.x'
displayName: 'Install Node.js'
- task: SonarCloudPrepare@1
inputs:
SonarCloud: 'SonarCloudUT365'
organization: 'ramarao9'
scannerMode: 'CLI'
configMode: 'manual'
cliProjectKey: 'ramarao9_Utilities365'
cliProjectName: 'Utilities365'
cliSources: '.'
- task: Npm@1
displayName: 'npm install'
inputs:
verbose: false
- script: |
npm run build
npm run pack
displayName: 'npm build'
- script: |
npm run pack
displayName: 'Pack Electron Dist'
- task: Bash@3
inputs:
targetType: 'inline'
script: |
# Write your commands here
echo 'Source Directory'
echo $(Build.SourcesDirectory)
- task: ArchiveFiles@2
inputs:
rootFolderOrFile: '$(Build.SourcesDirectory)/dist/$(distFolder)/'
includeRootFolder: false
archiveType: 'zip'
archiveFile: '$(Build.ArtifactStagingDirectory)/$(Build.BuildId)_$(Agent.OS).zip'
replaceExistingArchive: true
- task: PublishBuildArtifacts@1
inputs:
PathtoPublish: '$(Build.ArtifactStagingDirectory)'
ArtifactName: 'drop'
publishLocation: 'Container'
- task: SonarCloudAnalyze@1
- task: SonarCloudPublish@1
inputs:
pollingTimeoutSec: '300'