adding zlinux-support

This commit is contained in:
KIRAN DARBHA
2020-08-18 16:49:01 +05:30
parent cd69f6287f
commit 8d7085c18f
3 changed files with 21 additions and 13 deletions

View File

@@ -23,7 +23,7 @@ echo 'Building Developer image...' && echo -en 'travis_fold:start:build-devserve
make build-devserver
echo -en 'travis_fold:end:build-devserver\\r'
if [ "$BUILD_ALL" = true ] ; then
if [ "$ARCH" = "amd64" ] ; then
if [[ "$ARCH" = "amd64" || "$ARCH" = "s390x" ]] ; then
echo 'Building Production image...' && echo -en 'travis_fold:start:build-advancedserver\\r'
make build-advancedserver
echo -en 'travis_fold:end:build-advancedserver\\r'

View File

@@ -32,7 +32,7 @@ function push_developer {
}
function push_production {
if [ "$ARCH" = "amd64" ] ; then
if [[ "$ARCH" = "amd64" || "$ARCH" = "s390x" ]] ; then
echo 'Pushing Production image...' && echo -en 'travis_fold:start:push-advancedserver\\r'
make push-advancedserver
echo -en 'travis_fold:end:push-advancedserver\\r'