File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff 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]') }}
You can’t perform that action at this time.
0 commit comments