Skip to content

Commit

Permalink
WFLY-18383 Quickstart for MicroProfile LRA
Browse files Browse the repository at this point in the history
  • Loading branch information
xstefank committed Nov 21, 2023
1 parent 59d4d80 commit 1c1dc3d
Show file tree
Hide file tree
Showing 17 changed files with 1,426 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/quickstart_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ jobs:
echo "Building bootable jar..."
mvn -fae clean package -Pbootable-jar
echo "Starting bootable jar..."
mvn -f ${{ inputs.DEPLOYMENT_DIR }}/pom.xml wildfly-jar:start -Djar-file-name=${{ inputs.DEPLOYMENT_DIR }}/target/${{ inputs.QUICKSTART_PATH }}-bootable.jar -Dstartup-timeout=120
mvn -f ${{ inputs.DEPLOYMENT_DIR }}/pom.xml wildfly-jar:start -Djar-file-name=${{ inputs.DEPLOYMENT_DIR }}/target/${{ inputs.QUICKSTART_PATH }}-bootable.jar -Dstartup-timeout=120 -Dserver.host=${{ inputs.SERVER_PROVISIONING_SERVER_HOST }}
echo "Testing bootable jar..."
mvn -fae verify -Dserver.host=${{ inputs.SERVER_PROVISIONING_SERVER_HOST }} -Pintegration-testing
echo "Shutting down bootable jar..."
Expand Down
14 changes: 14 additions & 0 deletions .github/workflows/quickstart_microprofile-lra_ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: WildFly microprofile-lra Quickstart CI

on:
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
paths:
- 'microprofile-lra/**'
- '.github/workflows/quickstart_ci.yml'
jobs:
call-quickstart_ci:
uses: ./.github/workflows/quickstart_ci.yml
with:
QUICKSTART_PATH: microprofile-lra
TEST_BOOTABLE_JAR: true
Loading

0 comments on commit 1c1dc3d

Please sign in to comment.