Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions .github/workflows/pulsar-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -572,24 +572,28 @@ jobs:

- name: Shade on Java 8
group: SHADE_RUN
upload_name: SHADE_RUN_8
runtime_jdk: 8
setup: ./build/run_integration_group.sh SHADE_BUILD
no_coverage: true

- name: Shade on Java 11
group: SHADE_RUN
upload_name: SHADE_RUN_11
runtime_jdk: 11
setup: ./build/run_integration_group.sh SHADE_BUILD
no_coverage: true

- name: Shade on Java 17
group: SHADE_RUN
upload_name: SHADE_RUN_17
runtime_jdk: 17
setup: ./build/run_integration_group.sh SHADE_BUILD
no_coverage: true

- name: Shade on Java 21
group: SHADE_RUN
upload_name: SHADE_RUN_21
runtime_jdk: 21
setup: ./build/run_integration_group.sh SHADE_BUILD
no_coverage: true
Expand Down Expand Up @@ -693,7 +697,7 @@ jobs:
uses: actions/upload-artifact@v4
if: ${{ !success() }}
with:
name: Integration-${{ matrix.group }}-surefire-reports
name: Integration-${{ matrix.upload_name || matrix.group }}-surefire-reports
path: surefire-reports
retention-days: 7

Expand All @@ -702,7 +706,7 @@ jobs:
if: ${{ !success() }}
continue-on-error: true
with:
name: Integration-${{ matrix.group }}-container-logs
name: Integration-${{ matrix.upload_name || matrix.group }}-container-logs
path: tests/integration/target/container-logs
retention-days: 7

Expand Down
2 changes: 1 addition & 1 deletion build/run_integration_group.sh
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ mvn_run_integration_test() {
if [[ $build_only -ne 1 ]]; then
echo "::group::Run tests for " "$@"
# use "verify" instead of "test"
mvn -B -ntp -pl "$modules" $failfast_args $coverage_args -DskipDocker -DskipSourceReleaseAssembly=true -Dspotbugs.skip=true -Dlicense.skip=true -Dcheckstyle.skip=true -Drat.skip=true -DredirectTestOutputToFile=false $clean_arg verify "$@"
mvn -B -ntp -pl "$modules" $failfast_args $coverage_args -DskipDocker -DskipSourceReleaseAssembly=true -Dspotbugs.skip=true -Dlicense.skip=true -Dcheckstyle.skip=true -Drat.skip=true $clean_arg verify "$@"
echo "::endgroup::"
set +x
"$SCRIPT_DIR/pulsar_ci_tool.sh" move_test_reports || true
Expand Down
Loading