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

Fix keycloak example + improve CI build to catch a similar issue next time #161

Merged
merged 4 commits into from
Oct 3, 2022
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Try fix CI failure on s390x
Signed-off-by: Marko Strukelj <marko.strukelj@gmail.com>
  • Loading branch information
mstruk committed Oct 3, 2022
commit d6ee5da7135eb14581c68a803f389dc7a06c6701
13 changes: 6 additions & 7 deletions .travis/build.sh
Original file line number Diff line number Diff line change
@@ -43,6 +43,11 @@ mvn spotbugs:check

arch=$(uname -m)

# Also test examples build on different architectures (exclude ppc64le until fixed)
if [ "$arch" != 'ppc64le']; then
mvn clean install -f examples/docker
fi

# Run testsuite if this is a main build
if [ "${MAIN_BUILD}" == "TRUE" ] ; then

@@ -90,16 +95,10 @@ if [ "${MAIN_BUILD}" == "TRUE" ] ; then
set -e
fi

# Also test examples build on different architectures (exclude ppc64le until fixed)
if [ "$arch" != 'ppc64le']; then
mvn clean install -f examples/docker
fi

# Test example image for keycloak-ssl example
# Test example image build for keycloak-ssl example
cd examples/docker
docker-compose -f compose.yml -f keycloak/compose-ssl.yml build
cd ../..

fi

# Push only releases