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
|
fetch-depth: 0
|
||||||
repository: ${{ matrix.repo }}
|
repository: ${{ matrix.repo }}
|
||||||
path: ${{ matrix.name }}
|
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 }}
|
run: docker-compose -f ./testing/downstream_testing/docker-compose.yml --profile ${{ matrix.docker_profile }} up --exit-code-from base_${{ matrix.docker_profile }}
|
||||||
env:
|
env:
|
||||||
DS_NAME: ${{ matrix.name }}
|
DS_NAME: ${{ matrix.name }}
|
||||||
|
@ -79,3 +79,6 @@ jobs:
|
||||||
DS_MATRIX_EXCLUDE: ${{ matrix.matrix_exclude }}
|
DS_MATRIX_EXCLUDE: ${{ matrix.matrix_exclude }}
|
||||||
DOCKER_BUILDKIT: 1
|
DOCKER_BUILDKIT: 1
|
||||||
COV_CMD: ""
|
COV_CMD: ""
|
||||||
|
- name: Test Results - {{ matrix.name }}
|
||||||
|
if: ${{ always() }}
|
||||||
|
run: docker logs base
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
version: "3"
|
version: "3"
|
||||||
services:
|
services:
|
||||||
base_nodb:
|
base_nodb:
|
||||||
|
container_name: base
|
||||||
build: .
|
build: .
|
||||||
environment:
|
environment:
|
||||||
- DS_NAME
|
- DS_NAME
|
||||||
|
@ -18,6 +19,7 @@ services:
|
||||||
- nodb
|
- nodb
|
||||||
|
|
||||||
base_postgres:
|
base_postgres:
|
||||||
|
container_name: base
|
||||||
build: .
|
build: .
|
||||||
environment:
|
environment:
|
||||||
- DS_NAME
|
- DS_NAME
|
||||||
|
@ -49,6 +51,7 @@ services:
|
||||||
- postgres
|
- postgres
|
||||||
|
|
||||||
base_mysql:
|
base_mysql:
|
||||||
|
container_name: base
|
||||||
build: .
|
build: .
|
||||||
environment:
|
environment:
|
||||||
- DS_NAME
|
- DS_NAME
|
||||||
|
|
Loading…
Reference in New Issue