From b17d1afb8b056d460c7917264417f2d92dc41574 Mon Sep 17 00:00:00 2001 From: Michael Vasseur <14887731+vmcj@users.noreply.github.com> Date: Sun, 22 Dec 2024 00:18:25 +0100 Subject: [PATCH] Fix the upload of the unit test results We expect the file to be named per matrix job but this was not updated in the code so the upload action couldn't find the files. --- .github/jobs/unit-tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/jobs/unit-tests.sh b/.github/jobs/unit-tests.sh index b55fb86ce3..2f5ff66df7 100755 --- a/.github/jobs/unit-tests.sh +++ b/.github/jobs/unit-tests.sh @@ -36,7 +36,7 @@ php $phpcov webapp/bin/phpunit -c webapp/phpunit.xml.dist webapp/tests/$unittest UNITSUCCESS=$? # Store the unit tests also in the root for the GHA -cp $ARTIFACTS/unit-tests.xml $DIR/ +cp $ARTIFACTS/unit-tests.xml $DIR/unit-tests-${version}-${unittest}.xml # Make sure the log exists before copy touch ${DIR}/webapp/var/log/test.log