build: ♻ misc build updates

This commit is contained in:
Collin M. Barrett 2020-09-06 14:03:38 -05:00
parent ddeafbeb29
commit e5679d530e

View file

@ -149,7 +149,7 @@ steps:
displayName: build test-migrations
condition: and(eq(variables['abortJustMigrated.aborted'], 'false'), eq(variables['commitOrAbandon.committed'], 'true'), succeeded())
inputs:
dockerComposeFile: docker-compose.migrations.tests.yml
dockerComposeFile: docker-compose.directory.migrations.tests.yml
dockerComposeCommand: build directory.infrastructure.migrations.tests
- task: Docker@2
@ -163,14 +163,14 @@ steps:
displayName: up test-migrations db
condition: and(eq(variables['abortJustMigrated.aborted'], 'false'), eq(variables['commitOrAbandon.committed'], 'true'), succeeded())
inputs:
dockerComposeFile: docker-compose.migrations.tests.yml
dockerComposeFile: docker-compose.directory.migrations.tests.yml
dockerComposeCommand: up -d directory.db
- task: DockerCompose@0
displayName: run test-migrations
condition: and(eq(variables['abortJustMigrated.aborted'], 'false'), eq(variables['commitOrAbandon.committed'], 'true'), succeeded())
inputs:
dockerComposeFile: docker-compose.migrations.tests.yml
dockerComposeFile: docker-compose.directory.migrations.tests.yml
dockerComposeCommand: run directory.infrastructure.migrations.tests
- task: Docker@2