blob: f5aa71003908939b586316d744146875e4ebd498 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
sudo: required
env:
- TRAVIS_DEBIAN_DISTRIBUTION=unstable
- TRAVIS_DEBIAN_DISTRIBUTION=testing
- TRAVIS_DEBIAN_DISTRIBUTION=stable
matrix:
allow_failures:
- env: TRAVIS_DEBIAN_DISTRIBUTION=unstable
- env: TRAVIS_DEBIAN_DISTRIBUTION=testing
services:
- docker
script:
# build the debian package
- wget -O- http://travis.debian.net/script.sh | sh -
#notifications:
# email: false
branches:
except:
- /^debian\/\d/
|