Skip to content

Commit

Permalink
Add basic Travis config.
Browse files Browse the repository at this point in the history
Simpler set of builds.
  • Loading branch information
notroj committed Mar 24, 2021
1 parent 90b2324 commit 928eeac
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
language: c
os: linux
dist: bionic
addons:
apt:
packages:
- libtool-bin
env:
global:
- MARGS="-j2"
matrix:
include:
- name: Default
- name: Static
env: CONFIG="--enable-static"
- name: Maintainer-mode
env: CONFIG="--enable-maintainer-mode"
- name: Pool-debug
env: CONFIG="--enable-pool-debug"
- name: Pool-debug, maintainer-mode
env: CONFIG="--enable-pool-debug --enable-maintainer-mode"
- name: Maintainer-mode, no IPv6
env: CONFIG="--enable-maintainer-mode --disable-ipv6"

script: ./buildconf && ./configure $CONFIG && make $MARGS

0 comments on commit 928eeac

Please sign in to comment.