mirror of
https://github.com/samba-team/samba.git
synced 2024-12-22 13:34:15 +03:00
da72c4018e
This takes this part of the test out of the main, slow samba task but also keeps it away from samba-o3 which is up against the 50min budget on travis-ci. Signed-off-by: Andrew Bartlett <abartlet@samba.org> Reviewed-by: Douglas Bagnall <douglas.bagnall@catalyst.net.nz> Autobuild-User(master): Andrew Bartlett <abartlet@samba.org> Autobuild-Date(master): Fri Mar 23 12:00:40 CET 2018 on sn-devel-144
42 lines
1.5 KiB
YAML
42 lines
1.5 KiB
YAML
language: c
|
|
dist: trusty
|
|
|
|
sudo: true
|
|
|
|
cache: ccache
|
|
|
|
# Everything except samba and ctdb (long tests)
|
|
env:
|
|
- TASK=samba-xc
|
|
- TASK=samba-ctdb
|
|
- TASK=samba-libs
|
|
- TASK=samba-static
|
|
- TASK=samba-o3
|
|
- TASK=samba-none-env
|
|
- TASK=samba-nopython
|
|
- TASK=samba-systemkrb5
|
|
- TASK=ldb
|
|
- TASK=tdb
|
|
- TASK=talloc
|
|
- TASK=replace
|
|
- TASK=tevent
|
|
- TASK=pidl
|
|
|
|
# Fail everything after the first job fails
|
|
matrix:
|
|
fast_finish: true
|
|
|
|
before_install:
|
|
- sudo apt-get update -qq
|
|
- sudo apt-get install --assume-yes acl attr autoconf bind9utils bison build-essential debhelper dnsutils docbook-xml docbook-xsl flex gdb libjansson-dev krb5-user libacl1-dev libaio-dev libarchive-dev libattr1-dev libblkid-dev libbsd-dev libcap-dev libcups2-dev libgnutls-dev libgpgme11-dev libjson-perl libldap2-dev libncurses5-dev libpam0g-dev libparse-yapp-perl libpopt-dev libreadline-dev nettle-dev perl perl-modules pkg-config python-all-dev python-crypto python-dbg python-dev python-dnspython python3-dnspython python-gpgme python3-gpgme python-markdown python3-markdown python3-dev xsltproc zlib1g-dev
|
|
- sudo apt-get install --assume-yes binutils-gold
|
|
- sudo update-alternatives --install "/usr/bin/ld" "ld" "/usr/bin/ld.gold" 20
|
|
- sudo update-alternatives --install "/usr/bin/ld" "ld" "/usr/bin/ld.bfd" 10
|
|
- sudo update-alternatives --set ld /usr/bin/ld.gold
|
|
|
|
script:
|
|
- if [ $TASK = "pidl" ]; then
|
|
git fetch --unshallow;
|
|
fi
|
|
- ./script/autobuild.py --tail --testbase=/tmp $TASK
|