From f2f21b1a2b7c7cc0190247841e25c363d8fe1cdb Mon Sep 17 00:00:00 2001 From: sommersoft Date: Sun, 17 Apr 2022 08:45:34 -0500 Subject: [PATCH] add Actions step for more concise results readability --- .github/workflows/downstream_testing.yml | 5 ++++- testing/downstream_testing/docker-compose.yml | 3 +++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/downstream_testing.yml b/.github/workflows/downstream_testing.yml index a57a9d595..bccc144f2 100644 --- a/.github/workflows/downstream_testing.yml +++ b/.github/workflows/downstream_testing.yml @@ -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 diff --git a/testing/downstream_testing/docker-compose.yml b/testing/downstream_testing/docker-compose.yml index ee3fcd5e9..ea5bf33a8 100644 --- a/testing/downstream_testing/docker-compose.yml +++ b/testing/downstream_testing/docker-compose.yml @@ -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