2020-12-01 12:59:59 +00:00
|
|
|
trigger:
|
2020-12-01 13:59:25 +00:00
|
|
|
- master
|
2021-02-18 20:24:34 +00:00
|
|
|
- next
|
2021-02-27 16:07:11 +00:00
|
|
|
- version-*
|
2020-12-01 12:59:59 +00:00
|
|
|
|
2020-12-02 21:41:53 +00:00
|
|
|
variables:
|
2021-01-25 19:51:01 +00:00
|
|
|
${{ if startsWith(variables['Build.SourceBranch'], 'refs/pull/') }}:
|
|
|
|
branchName: ${{ replace(variables['System.PullRequest.SourceBranch'], '/', '-') }}
|
2020-12-02 21:41:53 +00:00
|
|
|
${{ if startsWith(variables['Build.SourceBranch'], 'refs/heads/') }}:
|
|
|
|
branchName: ${{ replace(variables['Build.SourceBranchName'], 'refs/heads/', '') }}
|
|
|
|
|
2020-12-01 12:59:59 +00:00
|
|
|
stages:
|
2021-03-08 10:14:00 +00:00
|
|
|
- stage: generate
|
|
|
|
jobs:
|
|
|
|
- job: swagger_generate
|
|
|
|
pool:
|
|
|
|
vmImage: 'ubuntu-latest'
|
|
|
|
steps:
|
|
|
|
- task: NodeTool@0
|
|
|
|
inputs:
|
|
|
|
versionSpec: '12.x'
|
|
|
|
displayName: 'Install Node.js'
|
|
|
|
- task: CmdLine@2
|
|
|
|
inputs:
|
|
|
|
script: |
|
2021-03-16 20:32:39 +00:00
|
|
|
docker run --rm -v $(pwd):/local openapitools/openapi-generator-cli generate -i /local/swagger.yaml -g typescript-fetch -o /local/web/api --additional-properties=typescriptThreePlus=true,supportsES6=true,npmName=authentik-api,npmVersion=1.0.0
|
2021-03-08 10:14:00 +00:00
|
|
|
- task: PublishPipelineArtifact@1
|
|
|
|
inputs:
|
|
|
|
targetPath: 'web/src/api/'
|
|
|
|
artifact: 'ts_swagger_client'
|
|
|
|
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:
|
|
|
|
versionSpec: '12.x'
|
|
|
|
displayName: 'Install Node.js'
|
2021-03-08 10:14:00 +00:00
|
|
|
- task: DownloadPipelineArtifact@2
|
|
|
|
inputs:
|
|
|
|
buildType: 'current'
|
|
|
|
artifactName: 'ts_swagger_client'
|
|
|
|
path: "web/src/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:
|
|
|
|
versionSpec: '12.x'
|
|
|
|
displayName: 'Install Node.js'
|
2021-03-08 10:14:00 +00:00
|
|
|
- task: DownloadPipelineArtifact@2
|
|
|
|
inputs:
|
|
|
|
buildType: 'current'
|
|
|
|
artifactName: 'ts_swagger_client'
|
|
|
|
path: "web/src/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:
|
|
|
|
versionSpec: '12.x'
|
|
|
|
displayName: 'Install Node.js'
|
2021-03-08 10:14:00 +00:00
|
|
|
- task: DownloadPipelineArtifact@2
|
|
|
|
inputs:
|
|
|
|
buildType: 'current'
|
|
|
|
artifactName: 'ts_swagger_client'
|
|
|
|
path: "web/src/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'
|
2020-12-02 20:23:07 +00:00
|
|
|
- stage: build_docker
|
|
|
|
jobs:
|
|
|
|
- job: build_static
|
|
|
|
pool:
|
|
|
|
vmImage: 'ubuntu-latest'
|
|
|
|
steps:
|
2021-03-08 10:14:00 +00:00
|
|
|
- task: DownloadPipelineArtifact@2
|
|
|
|
inputs:
|
|
|
|
buildType: 'current'
|
|
|
|
artifactName: 'ts_swagger_client'
|
|
|
|
path: "web/src/api/"
|
|
|
|
- task: Bash@3
|
|
|
|
inputs:
|
|
|
|
targetType: 'inline'
|
|
|
|
script: |
|
|
|
|
python ./scripts/az_do_set_branch.py
|
|
|
|
- task: Docker@2
|
|
|
|
inputs:
|
|
|
|
containerRegistry: 'beryjuorg-harbor'
|
|
|
|
repository: 'authentik/static'
|
|
|
|
command: 'buildAndPush'
|
|
|
|
Dockerfile: 'web/Dockerfile'
|
|
|
|
tags: "gh-$(branchName)"
|
|
|
|
buildContext: 'web/'
|