mirror of
https://github.com/tmux/tmux.git
synced 2024-11-19 10:58:51 +00:00
beb0c01c27
From now on, all pushes to master will result in tmux compiling against a linux-based distribution (Debian). This will make it easier for automatic merges between OpenBSD and portable to be tested, without the need for so much manual syncing. Any build failures will be reported to me, and fixed accordingly.
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
|