diff --git a/.github/workflows/pull-request-build-test.yml b/.github/workflows/pull-request-build-test.yml index 52fd6b7..1cdb2ba 100644 --- a/.github/workflows/pull-request-build-test.yml +++ b/.github/workflows/pull-request-build-test.yml @@ -9,13 +9,13 @@ jobs: strategy: fail-fast: false matrix: - DISTRO: ["run", "tomcat"] + DISTRO: ["run", "tomcat", "wildfly"] PLATFORM: ["amd64"] env: DISTRO: ${{ matrix.DISTRO }} PLATFORM: ${{ matrix.PLATFORM }} - VERSION: 1.0.0-beta-4 - SNAPSHOT: false + VERSION: 1.0.0-beta-5 + SNAPSHOT: true IMAGE_REPO_OPERATON: operaton/operaton IMAGE_REPO_TOMCAT: operaton/tomcat IMAGE_REPO_WILDFLY: operaton/wildfly diff --git a/test/test-run.sh b/test/test-run.sh index 2f06790..eb54658 100755 --- a/test/test-run.sh +++ b/test/test-run.sh @@ -16,9 +16,9 @@ test_login admin || _exit 3 "Unable to login to admin" test_login cockpit || _exit 4 "Unable to login to cockpit" test_login tasklist || _exit 5 "Unable to login to tasklist" -_log "Login successfull" +_log "Login successful" # Disabled encoding test ... # test_encoding || _exit 6 "Wrong encoding detected" -_exit 0 "Test successfull" +_exit 0 "Test successful" diff --git a/test/test-tomcat.sh b/test/test-tomcat.sh index 44dfeca..9d63f14 100755 --- a/test/test-tomcat.sh +++ b/test/test-tomcat.sh @@ -18,8 +18,8 @@ test_login admin || _exit 3 "Unable to login to admin" test_login cockpit || _exit 4 "Unable to login to cockpit" test_login tasklist || _exit 5 "Unable to login to tasklist" -_log "Login successfull" +_log "Login successful" test_encoding || _exit 6 "Wrong encoding detected" -_exit 0 "Test successfull" +_exit 0 "Test successful" diff --git a/test/test-wildfly.sh b/test/test-wildfly.sh index acd8175..4f93d55 100755 --- a/test/test-wildfly.sh +++ b/test/test-wildfly.sh @@ -10,7 +10,7 @@ poll_log 'started in' 'started (with errors) in' || _exit 1 "Server not started" _log "Server started" -grep_log 'Deployed "operaton-example-invoice-jakarta-7.' || _exit 2 "Process application not deployed" +grep_log 'Deployed "operaton-example-invoice-' || _exit 2 "Process application not deployed" _log "Process application deployed" @@ -18,8 +18,8 @@ test_login admin || _exit 3 "Unable to login to admin" test_login cockpit || _exit 4 "Unable to login to cockpit" test_login tasklist || _exit 5 "Unable to login to tasklist" -_log "Login successfull" +_log "Login successful" test_encoding || _exit 6 "Wrong encoding detected" -_exit 0 "Test successfull" +_exit 0 "Test successful"