mirror of
https://github.com/tmate-io/tmate-ssh-server.git
synced 2020-11-18 19:53:51 -08:00
* try to fix travis build * try to use bionic somehow * try again to fix travis * need libssh for travis too * install newer libssh too * be less verbose in travis script
14 lines
460 B
YAML
14 lines
460 B
YAML
language: c
|
|
dist: xenial
|
|
matrix:
|
|
include:
|
|
- compiler: gcc
|
|
- compiler: clang
|
|
env: CFLAGS="-g -O2"
|
|
before_install:
|
|
- sudo apt-get update -qq
|
|
- sudo apt-get -y install debhelper autotools-dev dh-autoreconf file libncurses5-dev libevent-dev pkg-config libutempter-dev build-essential cmake
|
|
- ./install_msgpack_travis.sh
|
|
- ./install_libssh_travis.sh
|
|
script: (CFLAGS= ./autogen.sh) && ./configure --enable-debug && make
|