2020-12-01 12:59:59 +00:00
|
|
|
trigger:
|
2021-05-06 12:02:59 +00:00
|
|
|
batch: true
|
|
|
|
branches:
|
|
|
|
include:
|
|
|
|
- master
|
|
|
|
- next
|
|
|
|
- version-*
|
2020-12-01 12:59:59 +00:00
|
|
|
|
|
|
|
stages:
|
2021-03-08 10:14:00 +00:00
|
|
|
- stage: generate
|
|
|
|
jobs:
|
2021-05-16 21:24:52 +00:00
|
|
|
- job: generate_api
|
2021-03-08 10:14:00 +00:00
|
|
|
pool:
|
|
|
|
vmImage: 'ubuntu-latest'
|
|
|
|
steps:
|
|
|
|
- task: NodeTool@0
|
|
|
|
inputs:
|
2021-05-05 07:44:15 +00:00
|
|
|
versionSpec: '16.x'
|
2021-03-08 10:14:00 +00:00
|
|
|
displayName: 'Install Node.js'
|
|
|
|
- task: CmdLine@2
|
|
|
|
inputs:
|
2021-05-16 20:57:02 +00:00
|
|
|
script: make gen-web
|
2021-03-08 10:14:00 +00:00
|
|
|
- task: PublishPipelineArtifact@1
|
|
|
|
inputs:
|
2021-03-16 21:38:19 +00:00
|
|
|
targetPath: 'web/api/'
|
2021-05-16 21:24:52 +00:00
|
|
|
artifact: 'ts_api_client'
|
2021-03-08 10:14:00 +00:00
|
|
|
publishLocation: 'pipeline'
|
2020-12-02 20:23:07 +00:00
|
|
|
- stage: lint
|
2020-12-01 12:59:59 +00:00
|
|
|
jobs:
|
2020-12-05 21:08:42 +00:00
|
|
|
- job: eslint
|
2020-12-01 12:59:59 +00:00
|
|
|
pool:
|
|
|
|
vmImage: 'ubuntu-latest'
|
|
|
|
steps:
|
|
|
|
- task: NodeTool@0
|
|
|
|
inputs:
|
2021-05-05 07:44:15 +00:00
|
|
|
versionSpec: '16.x'
|
2020-12-01 12:59:59 +00:00
|
|
|
displayName: 'Install Node.js'
|
2021-03-08 10:14:00 +00:00
|
|
|
- task: DownloadPipelineArtifact@2
|
|
|
|
inputs:
|
|
|
|
buildType: 'current'
|
2021-05-16 21:24:52 +00:00
|
|
|
artifactName: 'ts_api_client'
|
2021-03-16 21:38:19 +00:00
|
|
|
path: "web/api/"
|
2020-12-01 12:59:59 +00:00
|
|
|
- task: Npm@1
|
|
|
|
inputs:
|
|
|
|
command: 'install'
|
|
|
|
workingDir: 'web/'
|
|
|
|
- task: Npm@1
|
|
|
|
inputs:
|
|
|
|
command: 'custom'
|
|
|
|
workingDir: 'web/'
|
|
|
|
customCommand: 'run lint'
|
2020-12-05 21:08:42 +00:00
|
|
|
- job: lit_analyse
|
|
|
|
pool:
|
|
|
|
vmImage: 'ubuntu-latest'
|
|
|
|
steps:
|
|
|
|
- task: NodeTool@0
|
|
|
|
inputs:
|
2021-05-05 07:44:15 +00:00
|
|
|
versionSpec: '16.x'
|
2020-12-05 21:08:42 +00:00
|
|
|
displayName: 'Install Node.js'
|
2021-03-08 10:14:00 +00:00
|
|
|
- task: DownloadPipelineArtifact@2
|
|
|
|
inputs:
|
|
|
|
buildType: 'current'
|
2021-05-16 21:24:52 +00:00
|
|
|
artifactName: 'ts_api_client'
|
2021-03-16 21:38:19 +00:00
|
|
|
path: "web/api/"
|
2020-12-05 21:08:42 +00:00
|
|
|
- task: Npm@1
|
|
|
|
inputs:
|
|
|
|
command: 'install'
|
|
|
|
workingDir: 'web/'
|
|
|
|
- task: Npm@1
|
|
|
|
inputs:
|
|
|
|
command: 'custom'
|
|
|
|
workingDir: 'web/'
|
|
|
|
customCommand: 'run lit-analyse'
|
2020-12-02 20:23:07 +00:00
|
|
|
- stage: build_local
|
2020-12-01 12:59:59 +00:00
|
|
|
jobs:
|
|
|
|
- job: build
|
|
|
|
pool:
|
|
|
|
vmImage: 'ubuntu-latest'
|
|
|
|
steps:
|
|
|
|
- task: NodeTool@0
|
|
|
|
inputs:
|
2021-05-05 07:44:15 +00:00
|
|
|
versionSpec: '16.x'
|
2020-12-01 12:59:59 +00:00
|
|
|
displayName: 'Install Node.js'
|
2021-03-08 10:14:00 +00:00
|
|
|
- task: DownloadPipelineArtifact@2
|
|
|
|
inputs:
|
|
|
|
buildType: 'current'
|
2021-05-16 21:24:52 +00:00
|
|
|
artifactName: 'ts_api_client'
|
2021-03-16 21:38:19 +00:00
|
|
|
path: "web/api/"
|
2020-12-01 12:59:59 +00:00
|
|
|
- task: Npm@1
|
|
|
|
inputs:
|
|
|
|
command: 'install'
|
|
|
|
workingDir: 'web/'
|
|
|
|
- task: Npm@1
|
|
|
|
inputs:
|
|
|
|
command: 'custom'
|
|
|
|
workingDir: 'web/'
|
|
|
|
customCommand: 'run build'
|