2020-12-12 00:42:43 +01:00
|
|
|
# Node.js
|
|
|
|
# Build a general Node.js project with npm.
|
|
|
|
# Add steps that analyze code, save build artifacts, deploy, and more:
|
|
|
|
# https://docs.microsoft.com/azure/devops/pipelines/languages/javascript
|
|
|
|
|
|
|
|
trigger:
|
2020-12-14 20:53:39 +01:00
|
|
|
- none
|
2020-12-12 00:42:43 +01:00
|
|
|
|
|
|
|
pool:
|
|
|
|
vmImage: 'windows-latest'
|
|
|
|
|
2020-12-14 20:25:24 +01:00
|
|
|
variables:
|
|
|
|
- group: qa-envs
|
|
|
|
|
2020-12-12 00:42:43 +01:00
|
|
|
steps:
|
|
|
|
- task: NodeTool@0
|
|
|
|
inputs:
|
|
|
|
versionSpec: '10.x'
|
|
|
|
displayName: 'Install Node.js'
|
2020-12-14 20:25:24 +01:00
|
|
|
|
2020-12-14 20:27:23 +01:00
|
|
|
- script: git checkout $(GIT_COMMIT_TO_BUILD)
|
|
|
|
displayName: setup commit to build
|
2020-12-12 00:42:43 +01:00
|
|
|
|
|
|
|
- script: npm install
|
|
|
|
displayName: 'npm install'
|
|
|
|
|
|
|
|
- script: |
|
|
|
|
npm run build
|
|
|
|
npm npm run clean:dist
|
2020-12-12 00:46:37 +01:00
|
|
|
displayName: 'npm build'
|
|
|
|
|
2020-12-14 18:41:26 +01:00
|
|
|
- script: npx electron-builder --win --x64 --ia32 -p never
|
2020-12-12 00:46:37 +01:00
|
|
|
displayName: 'electron-builder package'
|
2020-12-14 19:47:21 +01:00
|
|
|
|
|
|
|
- script: ls -alht dist
|
|
|
|
displayName: show executables
|
|
|
|
|
2020-12-14 20:56:29 +01:00
|
|
|
- task: PublishPipelineArtifact@1
|
2020-12-14 20:04:39 +01:00
|
|
|
inputs:
|
2020-12-14 21:15:37 +01:00
|
|
|
pathToPublish: '$(System.DefaultWorkingDirectory)/dist/Bitwarden-1.23.1-ia32.appx'
|
2020-12-14 20:25:24 +01:00
|
|
|
artifactName: Bitwarden-$(GIT_COMMIT_TO_BUILD)-ia32.appx
|
2020-12-14 19:47:21 +01:00
|
|
|
|
2020-12-14 20:56:29 +01:00
|
|
|
- task: PublishPipelineArtifact@1
|
2020-12-14 20:04:39 +01:00
|
|
|
inputs:
|
2020-12-14 21:15:37 +01:00
|
|
|
pathToPublish: '$(System.DefaultWorkingDirectory)/dist/Bitwarden-1.23.1-x64.appx'
|
2020-12-14 20:25:24 +01:00
|
|
|
artifactName: Bitwarden-$(GIT_COMMIT_TO_BUILD)-x64.appx
|