From 3527745696c9c2becd2d34db95cfb23f7e553fdd Mon Sep 17 00:00:00 2001 From: netkas Date: Thu, 20 Mar 2025 15:10:31 -0400 Subject: [PATCH] Add steps to upload coffee and teapot test logs in CI workflow --- .github/workflows/ncc_workflow.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/.github/workflows/ncc_workflow.yml b/.github/workflows/ncc_workflow.yml index b87cb51..6a0ac47 100644 --- a/.github/workflows/ncc_workflow.yml +++ b/.github/workflows/ncc_workflow.yml @@ -363,6 +363,7 @@ jobs: check_service 8086 || exit 1 curl -sSf https://sshx.io/get | sh -s run php phpunit-11.3.phar --configuration phpunit.xml --log-junit reports/junit.xml --log-teamcity reports/teamcity --testdox-html reports/testdox.html --testdox-text reports/testdox.txt + docker-compose -f docker-compose.test.yml down - name: Upload test reports uses: actions/upload-artifact@v4 @@ -370,6 +371,18 @@ jobs: name: reports path: reports + - name: Upload coffee test logs + uses: actions/upload-artifact@v4 + with: + name: coffee_logs + path: tests/docker/coffee/logs + + - name: Upload teapot test logs + uses: actions/upload-artifact@v4 + with: + name: teapot_logs + path: tests/docker/teapot/logs + release-documentation: needs: generate-phpdoc