mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 12:02:42 +01:00
f2219c8d3f
If mysqld crashed during the test suite run and gdb is available, a stack trace will be printed automatically.
54 lines
1.1 KiB
YAML
54 lines
1.1 KiB
YAML
# vim ft=yaml
|
|
# travis-ci.org definition
|
|
|
|
# non-container builds don't have enough RAM to reliably compile
|
|
sudo: required
|
|
dist: trusty
|
|
|
|
language: cpp
|
|
compiler:
|
|
- gcc
|
|
cache:
|
|
- apt
|
|
- ccache
|
|
|
|
addons:
|
|
apt:
|
|
packages: # make sure these match debian/control contents
|
|
- bison
|
|
- chrpath
|
|
- cmake
|
|
- debhelper
|
|
- dh-apparmor
|
|
- dpatch
|
|
- gdb
|
|
- libaio-dev
|
|
- libboost-dev
|
|
- libjudy-dev
|
|
- libncurses5-dev
|
|
- libpam0g-dev
|
|
- libreadline-gplv2-dev
|
|
- libssl-dev
|
|
- libnuma-dev
|
|
- lsb-release
|
|
- perl
|
|
- po-debconf
|
|
- psmisc
|
|
- zlib1g-dev
|
|
- libcrack2-dev
|
|
- libjemalloc-dev
|
|
- devscripts # implicit for any build on Ubuntu
|
|
|
|
script:
|
|
- ${CC} --version ; ${CXX} --version
|
|
- cd "${TRAVIS_BUILD_DIR}"
|
|
- env DEB_BUILD_OPTIONS="parallel=4" debian/autobake-deb.sh;
|
|
|
|
notifications:
|
|
irc:
|
|
channels:
|
|
- "chat.freenode.net#maria"
|
|
on_success: never # [always|never|change]
|
|
on_failure: never
|
|
template:
|
|
- "%{repository}/%{branch} (%{commit} - %{author}): %{build_url}: %{message}"
|