2016-11-14 19:41:12 +03:00
sudo : required
dist : trusty
2018-01-23 19:00:06 +03:00
git :
depth : false
2016-11-14 19:41:12 +03:00
services :
- docker
2016-02-19 14:58:06 +03:00
env :
2016-04-06 16:28:25 +03:00
global :
2016-04-06 18:31:43 +03:00
- REPO : $TRAVIS_REPO_SLUG
2016-05-27 15:12:29 +03:00
- VERSION : $TRAVIS_TAG
2018-07-09 17:54:04 +03:00
- CODENAME : maroilles
2017-05-04 10:31:39 +03:00
- N_MAKE_JOBS : 2
2016-11-14 19:41:12 +03:00
2017-05-04 10:31:39 +03:00
script :
2017-05-12 17:14:45 +03:00
- echo "Skipping tests... (Tests are executed on SemaphoreCI)"
2018-07-12 19:26:03 +03:00
- if [ "$TRAVIS_PULL_REQUEST" != "false" ]; then make docs-verify; fi
2017-05-12 17:14:45 +03:00
2017-04-11 21:47:25 +03:00
before_deploy :
2017-05-05 15:17:08 +03:00
- >
if ! [ "$BEFORE_DEPLOY_RUN" ]; then
export BEFORE_DEPLOY_RUN=1;
2017-05-12 17:14:45 +03:00
sudo -E apt-get -yq update;
2017-06-27 23:56:19 +03:00
sudo -E apt-get -yq --no-install-suggests --no-install-recommends --force-yes install docker-ce=${DOCKER_VERSION}*;
2017-05-12 17:14:45 +03:00
docker version;
2018-01-29 18:08:03 +03:00
make image;
2018-01-23 19:00:06 +03:00
if [ "$TRAVIS_TAG" ]; then
make -j${N_MAKE_JOBS} crossbinary-parallel;
2018-01-24 18:10:04 +03:00
tar cfz dist/traefik-${VERSION}.src.tar.gz --exclude-vcs --exclude dist .;
2018-01-23 19:00:06 +03:00
fi;
2018-01-23 16:18:03 +03:00
curl -sI https://github.com/containous/structor/releases/latest | grep -Fi Location | tr -d '\r' | sed "s/tag/download/g" | awk -F " " '{ print $2 "/structor_linux-amd64"}' | wget --output-document=$GOPATH/bin/structor -i -;
chmod +x $GOPATH/bin/structor;
2018-03-07 23:50:04 +03:00
structor -o containous -r traefik --dockerfile-url="https://raw.githubusercontent.com/containous/traefik/master/docs.Dockerfile" --menu.js-url="https://raw.githubusercontent.com/containous/structor/master/traefik-menu.js.gotmpl" --rqts-url="https://raw.githubusercontent.com/containous/structor/master/requirements-override.txt" --exp-branch=master --debug;
2017-05-05 15:17:08 +03:00
fi
2017-02-02 12:58:42 +03:00
deploy :
- provider : releases
api_key : ${GITHUB_TOKEN}
file : dist/traefik*
skip_cleanup : true
file_glob : true
on :
repo : containous/traefik
tags : true
- provider : script
2017-02-02 17:25:26 +03:00
script : sh script/deploy.sh
2017-02-02 15:59:28 +03:00
skip_cleanup : true
2017-02-02 12:58:42 +03:00
on :
repo : containous/traefik
tags : true
- provider : script
2017-02-02 17:25:26 +03:00
script : sh script/deploy-docker.sh
2017-02-02 15:59:28 +03:00
skip_cleanup : true
2017-02-02 12:58:42 +03:00
on :
repo : containous/traefik
2018-01-23 16:18:03 +03:00
- provider : pages
2018-03-02 16:20:04 +03:00
edge : false
2018-01-23 16:18:03 +03:00
github_token : ${GITHUB_TOKEN}
local_dir : site
skip_cleanup : true
on :
repo : containous/traefik
2018-01-23 16:48:04 +03:00
all_branches : true