oatpp-postgresql/azure-pipelines.yml

21 lines
532 B
YAML
Raw Permalink Normal View History

2020-07-04 08:12:36 +08:00
# 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'
2020-07-04 08:12:36 +08:00
continueOnError: false
pool:
vmImage: 'ubuntu-20.04'
2020-07-04 08:12:36 +08:00
workspace:
clean: all
steps:
- script: |
docker compose build
2020-10-13 13:34:40 +08:00
displayName: 'Compose build'
2020-07-04 08:12:36 +08:00
- script: |
docker compose run test
2020-10-13 13:34:40 +08:00
displayName: 'Compose run'