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:
188
188
189
189
- name : Tar integration tests
190
190
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
192
194
193
195
- name : Publish tests report
194
196
uses : actions/upload-artifact@v4
195
197
if : always()
196
198
with :
197
199
name : report-${{ matrix.test_mode }}-jdk-${{ matrix.java_version }}
198
200
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
203
203
204
204
test-e2e :
205
205
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