Skip to content

Commit

Permalink
Use the branch version to compile the quickstarts
Browse files Browse the repository at this point in the history
(cherry picked from commit fa655d9)
  • Loading branch information
gsmet committed Sep 13, 2024
1 parent f1ea3e7 commit 2c364c4
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/ci-actions-incremental.yml
Original file line number Diff line number Diff line change
Expand Up @@ -903,7 +903,12 @@ jobs:
CAPTURE_BUILD_SCAN: true
run: |
git clone --depth=1 -b ${{ steps.get-quickstarts-branch.outputs.result }} https://github.com/quarkusio/quarkus-quickstarts.git && cd quarkus-quickstarts
export LANG=en_US && ./mvnw -e -B -fae --settings .github/mvn-settings.xml clean verify -DskipTests
if [ "${{ steps.get-quickstarts-branch.outputs.result }}" != "development" ]; then
QUARKUS_VERSION_ARGS="-Dquarkus.platform.version=${{ steps.get-quickstarts-branch.outputs.result }}.999-SNAPSHOT -Dquarkus.version=${{ steps.get-quickstarts-branch.outputs.result }}.999-SNAPSHOT"
else
QUARKUS_VERSION_ARGS=""
fi
export LANG=en_US && ./mvnw -e -B -fae --settings .github/mvn-settings.xml clean verify -DskipTests -Dquarkus.platform.group-id=io.quarkus $QUARKUS_VERSION_ARGS
- name: Prepare build reports archive
if: always()
run: |
Expand Down

0 comments on commit 2c364c4

Please sign in to comment.