diff options
author | Marvin W <git@larma.de> | 2019-12-25 20:28:07 +0100 |
---|---|---|
committer | Marvin W <git@larma.de> | 2019-12-25 20:28:07 +0100 |
commit | 7d1497a549892f97ef28bd9e1f5cc65df2f30635 (patch) | |
tree | 32e2a6c505ce2da2deb96fe702f459f16e4eb9f8 /.travis.yml | |
parent | f3af064262e3ea8afe8397424b5f05d260a2a57e (diff) | |
download | dino-7d1497a549892f97ef28bd9e1f5cc65df2f30635.tar.gz dino-7d1497a549892f97ef28bd9e1f5cc65df2f30635.zip |
Add --release to ./configure, test via travis
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index f34e9760..99d4c982 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,11 +1,14 @@ dist: bionic language: c +env: + - CONFIGURE_FLAGS= + - CONFIGURE_FLAGS=--release before_install: - export USE_CCACHE=1 - sudo apt-get update - sudo apt-get install -y cmake valac libgee-0.8-dev libsqlite3-dev libgtk-3-dev libnotify-dev libgpgme-dev libsoup2.4-dev libgcrypt20-dev libqrencode-dev install: - - ./configure --with-tests + - ./configure --with-tests $CONFIGURE_FLAGS - make script: - build/xmpp-vala-test |