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
6 changes: 3 additions & 3 deletions .github/workflows/pull-request-build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Comment thread
kthoms marked this conversation as resolved.
IMAGE_REPO_OPERATON: operaton/operaton
IMAGE_REPO_TOMCAT: operaton/tomcat
IMAGE_REPO_WILDFLY: operaton/wildfly
Expand Down
4 changes: 2 additions & 2 deletions test/test-run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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"
4 changes: 2 additions & 2 deletions test/test-tomcat.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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"
6 changes: 3 additions & 3 deletions test/test-wildfly.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,16 @@ 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"
Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@kthoms , this was the reason of container failure! the log message didn't match the expected string

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oh no! Great that you found that!


_log "Process application deployed"

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"