Skip to content

Commit 108af43

Browse files
authored
ci: fix test-pull-request workflow (#961)
[`actions/[email protected]`](https://github.com/actions/upload-artifact/releases/tag/v4.4.0) includes a breaking change of that causes hidden directories and files not being uploaded. Since code coverage artifacts are in `agent/.libs` directory, this functionality needs to disabled. Set `include-hidden-files` to true when uploading code coverage artifacts.
1 parent 263681e commit 108af43

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

.github/workflows/test-agent.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -193,6 +193,7 @@ jobs:
193193
uses: actions/upload-artifact@v4
194194
with:
195195
name: agent.gcov-${{matrix.platform}}-${{matrix.arch}}-${{matrix.php}}
196+
include-hidden-files: true
196197
path: php-agent/agent/.libs/*.gc*
197198
integration-tests:
198199
needs: [daemon-unit-tests, agent-unit-test]

0 commit comments

Comments
 (0)