Skip to content

Commit

Permalink
Merge pull request #3128 from grondo/travis-fluxorama-fix
Browse files Browse the repository at this point in the history
travis-ci: fix fluxorama image build
  • Loading branch information
mergify[bot] committed Aug 10, 2020
2 parents 646f285 + 3bad19d commit d5df093
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -181,9 +181,15 @@ after_success:
fi
# If this is centos8 build, then build fluxorama image
if echo "$TAGNAME" | grep -q "centos8"; then
FLUXORAMATAG="fluxrm/fluxorama${TRAVIS_TAG+:$TRAVIS_TAG}"
docker build -t ${FLUXORAMATAG} src/test/docker/fluxorama
docker push ${FLUXORAMATAG}
FLUXORAMA="fluxrm/fluxorama"
docker build -t ${FLUXORAMA} src/test/docker/fluxorama
docker push ${FLUXORAMA}
# If this is a tag, also push tagged version of fluxorama image
if test -n "${TRAVIS_TAG}"; then
t="${FLUXORAMA}:${TRAVIS_TAG}"
docker tag ${FLUXORAMA} ${t} &&
docker push ${t}
fi
fi
fi
Expand Down

0 comments on commit d5df093

Please sign in to comment.