Module: vkd3d Branch: master Commit: 2fe76f3b607ac737b55a12b020d38cc5c29e881f URL: https://gitlab.winehq.org/wine/vkd3d/-/commit/2fe76f3b607ac737b55a12b020d38c...
Author: Giovanni Mascellani gmascellani@codeweavers.com Date: Tue Dec 26 22:37:38 2023 +0100
ci: Dump the d3d12 summary line in the CI log.
d3d12 lumps many tests together, so it's useful to have the summary line in the CI log.
---
gitlab/build-linux | 2 ++ gitlab/build-mac | 2 ++ 2 files changed, 4 insertions(+)
diff --git a/gitlab/build-linux b/gitlab/build-linux index d7e7573f..a68a36b5 100755 --- a/gitlab/build-linux +++ b/gitlab/build-linux @@ -20,6 +20,8 @@ else touch ../build_failed fi
+cat tests/d3d12.log | grep -E 'd3d12: [0-9]+ tests executed' || true + mkdir -p ../artifacts/$COMMIT rsync -Rr config.log doc/* test-suite.log tests/*.log tests/*/*.log ../artifacts/$COMMIT || true
diff --git a/gitlab/build-mac b/gitlab/build-mac index 17a8c7a0..3225c8a0 100755 --- a/gitlab/build-mac +++ b/gitlab/build-mac @@ -19,6 +19,8 @@ else touch ../build_failed fi
+cat tests/d3d12.log | grep -E 'd3d12: [0-9]+ tests executed' || true + mkdir -p ../artifacts/$COMMIT rsync -Rr config.log test-suite.log tests/*.log tests/*/*.log ../artifacts/$COMMIT || true