Skip to content

Commit 27345a6

Browse files
committed
Improve CI tests collection
Signed-off-by: Paolo Di Tommaso <[email protected]>
1 parent 8574e24 commit 27345a6

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -188,18 +188,18 @@ jobs:
188188

189189
- name: Tar integration tests
190190
if: always()
191-
run: tar -cvf integration-tests.tar tests/checks
191+
run: |
192+
tar -cvf integration-tests.tar.gz tests/checks
193+
tar -cvf validation-tests.tar.gz validation
192194
193195
- name: Publish tests report
194196
uses: actions/upload-artifact@v4
195197
if: always()
196198
with:
197199
name: report-${{ matrix.test_mode }}-jdk-${{ matrix.java_version }}
198200
path: |
199-
validation/**/* # All regular files
200-
validation/.[!.]* # Top-level hidden files
201-
validation/**/.[!.]* # Hidden files in subdirectories
202-
integration-tests.tar
201+
validation-tests.tar.gz
202+
integration-tests.tar.gz
203203
204204
test-e2e:
205205
if: ${{ contains(needs.build.outputs.commit_message,'[e2e stage]') || contains(needs.build.outputs.commit_message,'[e2e prod]') }}

0 commit comments

Comments
 (0)