blob: 782aa4b69188ee75333154c1a4d7b121cbc7dd75 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Docker image
# https://docs.microsoft.com/azure/devops/pipelines/languages/docker
# Schema
# https://docs.microsoft.com/en-us/azure/devops/pipelines/yaml-schema?view=azure-devops&tabs=schema
---
trigger:
- master
- refs/tags/v*
pool:
vmImage: 'Ubuntu-16.04'
variables:
TAG_VERSION: '$(build.buildId)'
steps:
-
script: bash ci.sh init
displayName: 'Docker build'
-
script: bash ci.sh ci
displayName: 'CI'
|