From ed7b5c437eb703fc4419ef5cacba6dfe0944a54b Mon Sep 17 00:00:00 2001 From: Romain Grecourt Date: Wed, 24 Apr 2024 18:08:19 -0700 Subject: [PATCH] merge-tests, merge-cli --- .github/workflows/validate.yml | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml index df6fafbba..01ef07d96 100644 --- a/.github/workflows/validate.yml +++ b/.github/workflows/validate.yml @@ -86,7 +86,7 @@ jobs: with: build-cache: read-write maven-cache: read-write - artifact-name: helidon-cli + artifact-name: helidon-cli-dist artifact-path: cli/impl/target/helidon-cli.zip run: | mvn ${MAVEN_ARGS} -T 8 \ @@ -129,6 +129,13 @@ jobs: -Pbuild-cache \ -Dsurefire.reportNameSuffix=${{ matrix.platform }} \ verify + merge-tests: + runs-on: ubuntu-20.04 + needs: test + steps: + - uses: actions/upload-artifact/merge@v4 + with: + name: test-results spotbugs: needs: build timeout-minutes: 15 @@ -222,3 +229,10 @@ jobs: -Dsurefire.reportNameSuffix=native-image-${{ matrix.platform }} \ -Dtest=CliFunctionalV2Test#*Native* \ test + merge-cli: + runs-on: ubuntu-20.04 + needs: cli + steps: + - uses: actions/upload-artifact/merge@v4 + with: + name: helidon-cli