2020-12-01 12:59:59 +00:00
|
|
|
trigger:
|
2020-12-01 13:59:25 +00:00
|
|
|
- master
|
2020-12-01 12:59:59 +00:00
|
|
|
|
2020-12-02 21:41:53 +00:00
|
|
|
variables:
|
|
|
|
${{ if startsWith(variables['Build.SourceBranch'], 'refs/heads/') }}:
|
|
|
|
branchName: ${{ replace(variables['Build.SourceBranchName'], 'refs/heads/', '') }}
|
|
|
|
${{ if startsWith(variables['Build.SourceBranch'], 'refs/pull/') }}:
|
2020-12-24 15:18:06 +00:00
|
|
|
branchName: $(System.PullRequest.SourceBranch)
|
2020-12-02 21:41:53 +00:00
|
|
|
|
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: |
|
|
|
|
set -x
|
|
|
|
echo '##vso[task.setvariable variable=branchName]$(echo "$(System.PullRequest.SourceBranch)" | sed "s/\//-/g")'
|
2020-12-02 20:23:07 +00:00
|
|
|
- task: Docker@2
|
|
|
|
inputs:
|
|
|
|
containerRegistry: 'dockerhub'
|
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'
|
|
|
|
tags: "gh-${{ variables.branchName }}"
|
|
|
|
buildContext: 'web/'
|