mirror of
https://github.com/tmate-io/tmate.git
synced 2024-11-08 09:14:22 +01:00
11 lines
372 B
YAML
11 lines
372 B
YAML
|
language: c
|
||
|
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
|
||
|
script: (CFLAGS= ./autogen.sh) && configure --enable-debug && make
|