oatpp-postgresql/azure-pipelines.yml
2021-10-24 01:50:01 +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_20_04
displayName: 'Build - Ubuntu 20.04'
continueOnError: false
pool:
vmImage: 'ubuntu-20.04'
workspace:
clean: all
steps:
- script: |
docker-compose build
displayName: 'Compose build'
- script: |
docker-compose run test
displayName: 'Compose run'