docker-mailserver/.travis.yml

30 lines
865 B
YAML
Raw Normal View History

branches:
except:
- donttestme
2015-10-18 21:02:46 +02:00
language: bash
sudo: required
env:
global:
- HADOLINT_VERSION=1.17.1
2015-10-18 21:02:46 +02:00
services:
- docker
before_install:
- sudo curl -L https://github.com/hadolint/hadolint/releases/download/v$HADOLINT_VERSION/hadolint-$(uname -s)-$(uname -m) -o /usr/local/bin/hadolint
- sudo chmod +rx /usr/local/bin/hadolint
2016-12-21 12:39:28 +01:00
install:
- make lint
- travis_retry travis_wait make build-no-cache
2016-12-21 12:39:28 +01:00
script:
- make generate-accounts run generate-accounts-after-run fixtures tests
2016-12-21 12:39:28 +01:00
after_script:
- make clean
notifications:
slack:
secure: TTo1z9nbZCWcIdfPwypubNa3y+pwvfgDGlzEVAGEuK7uuIpmEoAcAUNSSPTnbewDGHnDl8t/ml93MtvP+a+IVuAKytMqF39PHyoZO7aUl9J62V+G75OmnyGjXGJm40pQosCS6LzqoRRYXotl9+fwH568Kf4ifXCrMZX1d+ir7Ww=
2017-01-04 10:39:43 +01:00
webhooks:
urls:
2017-02-22 22:32:09 +01:00
- https://webhooks.gitter.im/e/7ec65291bfb4bf1f8518
2017-01-04 10:39:43 +01:00
on_success: always
on_failure: always
on_start: never