diff --git a/.travis.yml b/.travis.yml index 4bba7301..66494d0d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,21 +2,12 @@ branches: only: - master -jobs: -- language: c -- os: linux -- arch: amd64 -- dist: bionic -- before_script: +language: c +os: linux +arch: amd64 +before_script: - sudo apt-get install -y libfcgi-dev - ./test/travis/before_script.sh -- script: ./configure --with-restconf=fcgi && make && sudo make install -jobs: -- language: c -- os: linux -- arch: amd64 -- dist: xenial -- before_script: - - ./test/travis/before_script.sh -- script: ./configure --with-restconf=evhtp && make && sudo make install - \ No newline at end of file +script: + - ./configure --with-restconf=fcgi && make && sudo make install + - ./configure --with-restconf=event && make && sudo make install