Skip to content

Commit

Permalink
Improve CI tests collection
Browse files Browse the repository at this point in the history
Signed-off-by: Paolo Di Tommaso <paolo.ditommaso@gmail.com>
  • Loading branch information
pditommaso committed Feb 10, 2025
1 parent 8574e24 commit 27345a6
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -188,18 +188,18 @@ jobs:

- name: Tar integration tests
if: always()
run: tar -cvf integration-tests.tar tests/checks
run: |
tar -cvf integration-tests.tar.gz tests/checks
tar -cvf validation-tests.tar.gz validation
- name: Publish tests report
uses: actions/upload-artifact@v4
if: always()
with:
name: report-${{ matrix.test_mode }}-jdk-${{ matrix.java_version }}
path: |
validation/**/* # All regular files
validation/.[!.]* # Top-level hidden files
validation/**/.[!.]* # Hidden files in subdirectories
integration-tests.tar
validation-tests.tar.gz
integration-tests.tar.gz
test-e2e:
if: ${{ contains(needs.build.outputs.commit_message,'[e2e stage]') || contains(needs.build.outputs.commit_message,'[e2e prod]') }}
Expand Down

0 comments on commit 27345a6

Please sign in to comment.