oatpp-postgresql/azure-pipelines.yml
Leonid Stryzhevskyi fe7b1d525c
Ci (#1)
* Setup CI
2020-10-13 08:34:40 +03:00

21 lines
532 B
YAML

# Starter pipeline
# Start with a minimal pipeline that you can customize to build and deploy your code.
# Add steps that build, run tests, deploy, and more:
# https://aka.ms/yaml
jobs:
- job: ubuntu_16_04
displayName: 'Build - Ubuntu 16.04'
continueOnError: false
pool:
vmImage: 'Ubuntu 16.04'
workspace:
clean: all
steps:
- script: |
docker-compose build
displayName: 'Compose build'
- script: |
docker-compose run test
displayName: 'Compose run'