Skip to content

Commit b17d1af

Browse files
committed
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.
1 parent 7d7ed2e commit b17d1af

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/jobs/unit-tests.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ php $phpcov webapp/bin/phpunit -c webapp/phpunit.xml.dist webapp/tests/$unittest
3636
UNITSUCCESS=$?
3737

3838
# Store the unit tests also in the root for the GHA
39-
cp $ARTIFACTS/unit-tests.xml $DIR/
39+
cp $ARTIFACTS/unit-tests.xml $DIR/unit-tests-${version}-${unittest}.xml
4040

4141
# Make sure the log exists before copy
4242
touch ${DIR}/webapp/var/log/test.log

0 commit comments

Comments
 (0)