traefik/.travis.yml

59 lines
1.7 KiB
YAML
Raw Normal View History

2016-11-14 16:41:12 +00:00
sudo: required
dist: trusty
git:
depth: false
2016-11-14 16:41:12 +00:00
services:
- docker
env:
global:
- REPO: $TRAVIS_REPO_SLUG
- VERSION: $TRAVIS_TAG
2019-03-18 14:18:04 +00:00
- CODENAME: faisselle
2016-11-14 16:41:12 +00:00
script:
- echo "Skipping tests... (Tests are executed on SemaphoreCI)"
- if [ "$TRAVIS_PULL_REQUEST" != "false" ]; then make docs; fi
before_deploy:
- >
if ! [ "$BEFORE_DEPLOY_RUN" ]; then
export BEFORE_DEPLOY_RUN=1;
sudo -E apt-get -yq update;
2017-06-27 20:56:19 +00:00
sudo -E apt-get -yq --no-install-suggests --no-install-recommends --force-yes install docker-ce=${DOCKER_VERSION}*;
docker version;
2019-03-28 10:42:06 +00:00
make build-image;
if [ "$TRAVIS_TAG" ]; then
2019-03-14 15:22:04 +00:00
make release-packages;
fi;
2019-04-08 06:46:04 +00:00
curl -sfL https://raw.githubusercontent.com/containous/structor/master/godownloader.sh | bash -s -- -b "${GOPATH}/bin" ${STRUCTOR_VERSION}
structor -o containous -r traefik --dockerfile-url="https://raw.githubusercontent.com/containous/traefik/v1.7/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" --force-edit-url --exp-branch=master --debug;
fi
2019-03-14 15:22:04 +00:00
deploy:
- provider: releases
api_key: ${GITHUB_TOKEN}
file: dist/traefik*
skip_cleanup: true
file_glob: true
2019-03-18 16:20:42 +00:00
draft: true
on:
repo: containous/traefik
tags: true
- provider: script
script: sh script/deploy.sh
skip_cleanup: true
on:
repo: containous/traefik
tags: true
- provider: pages
2018-03-02 13:20:04 +00:00
edge: false
github_token: ${GITHUB_TOKEN}
local_dir: site
skip_cleanup: true
on:
repo: containous/traefik
2018-01-23 13:48:04 +00:00
all_branches: true