Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Propagate appsody test exit status #3

Open
wants to merge 1 commit into
base: newsbolstack
Choose a base branch
from
Open
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
4 changes: 1 addition & 3 deletions incubator/java-openliberty/image/project/run-stack.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ case $ACTION in
else
set -x
mvn -B -Plocal-dev -DappsDirectory=apps -Ddebug=false -Dmaven.repo.local=/mvn/repository pre-integration-test liberty:dev
set +x
fi
;;
debug)
Expand All @@ -35,7 +34,6 @@ case $ACTION in
else
set -x
mvn -B -Plocal-dev -DappsDirectory=apps -Dmaven.repo.local=/mvn/repository pre-integration-test liberty:dev
set +x
fi
;;
test)
Expand All @@ -47,7 +45,7 @@ case $ACTION in
# Keep liberty:create before 'pre-integration-test' phase to be consistent with "Dockerfile" for 'appsody build'
set -x
mvn -B -Plocal-dev -DappsDirectory=apps -Dmaven.repo.local=/mvn/repository clean liberty:create pre-integration-test liberty:install-feature liberty:start liberty:deploy failsafe:integration-test liberty:stop failsafe:verify
set +x
# make sure exit code propagates
fi
;;
*)
Expand Down