add Actions step for more concise results readability
This commit is contained in:
parent
e6b66d1da1
commit
f2f21b1a2b
|
@ -70,7 +70,7 @@ jobs:
|
|||
fetch-depth: 0
|
||||
repository: ${{ matrix.repo }}
|
||||
path: ${{ matrix.name }}
|
||||
- name: Run Downstream Tests
|
||||
- name: Run Downstream Tests - {{ matrix.name }}
|
||||
run: docker-compose -f ./testing/downstream_testing/docker-compose.yml --profile ${{ matrix.docker_profile }} up --exit-code-from base_${{ matrix.docker_profile }}
|
||||
env:
|
||||
DS_NAME: ${{ matrix.name }}
|
||||
|
@ -79,3 +79,6 @@ jobs:
|
|||
DS_MATRIX_EXCLUDE: ${{ matrix.matrix_exclude }}
|
||||
DOCKER_BUILDKIT: 1
|
||||
COV_CMD: ""
|
||||
- name: Test Results - {{ matrix.name }}
|
||||
if: ${{ always() }}
|
||||
run: docker logs base
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
version: "3"
|
||||
services:
|
||||
base_nodb:
|
||||
container_name: base
|
||||
build: .
|
||||
environment:
|
||||
- DS_NAME
|
||||
|
@ -18,6 +19,7 @@ services:
|
|||
- nodb
|
||||
|
||||
base_postgres:
|
||||
container_name: base
|
||||
build: .
|
||||
environment:
|
||||
- DS_NAME
|
||||
|
@ -49,6 +51,7 @@ services:
|
|||
- postgres
|
||||
|
||||
base_mysql:
|
||||
container_name: base
|
||||
build: .
|
||||
environment:
|
||||
- DS_NAME
|
||||
|
|
Loading…
Reference in New Issue