From deb23a467db5882274bd5ac2dc0da5bed6bff5c7 Mon Sep 17 00:00:00 2001 From: Ryan Northey Date: Wed, 5 Aug 2020 06:32:23 +0100 Subject: [PATCH] Add temporary travis config Signed-off-by: Ryan Northey --- .travis.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 00000000..93c8b5a2 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,19 @@ +# https://travis-ci.org/#!/phlax/envoy-docs + +dist: bionic + +script: + - export COMPOSE_FILE=./composition/docker-compose.yml + - docker build -f build_container/Dockerfile-docs -t phlax/envoy-build build_container + - docker images + +before_deploy: + - echo $DOCKER_ACCESS_TOKEN | docker login -u phlax --password-stdin + +deploy: + provider: script + script: docker push phlax/envoy-build + skip_cleanup: true + on: + all_branches: true + condition: $TRAVIS_BRANCH =~ ^(master)$