oatpp-postgresql/azure-pipelines.yml
bwengert79 36de2e4843 Update azure-pipelines.yml
Version two of the Docker Compose is invoked via docker compose
Removed hyphen from docker-compose
2024-10-04 08:20:26 -04: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'