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:
|
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'
|
|
|
|
- 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'
|
|
|
|
- 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'
|
|
|
|
- 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-01-11 15:18:44 +00:00
|
|
|
- task: Bash@3
|
|
|
|
inputs:
|
|
|
|
targetType: 'inline'
|
|
|
|
script: |
|
2021-02-28 13:24:16 +00:00
|
|
|
python ./scripts/az_do_set_branch.py
|
2020-12-02 20:23:07 +00:00
|
|
|
- task: Docker@2
|
|
|
|
inputs:
|
2021-03-01 11:04:56 +00:00
|
|
|
containerRegistry: 'GHCR'
|
2020-12-05 21:08:42 +00:00
|
|
|
repository: 'beryju/authentik-static'
|
2020-12-02 20:23:07 +00:00
|
|
|
command: 'buildAndPush'
|
|
|
|
Dockerfile: 'web/Dockerfile'
|
2021-01-25 19:51:01 +00:00
|
|
|
tags: "gh-$(branchName)"
|
2020-12-02 20:23:07 +00:00
|
|
|
buildContext: 'web/'
|