From 67370d7e0dc5f85cfd8c9cf75eb5b45261e4838c Mon Sep 17 00:00:00 2001 From: Yunior Luis Date: Mon, 20 Aug 2018 11:23:48 +0200 Subject: [PATCH] Fix sipp build. Test with default Trusty. --- .travis.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.travis.yml b/.travis.yml index 0ec6cd3..144d9b6 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,4 @@ language: python -sudo: false -dist: precise cache: - bundler @@ -29,11 +27,13 @@ install: - pip list before_script: - - git clone https://github.com/SIPp/sipp.git - - cd sipp - - ./build.sh --full + - wget https://github.com/SIPp/sipp/releases/download/v3.5.2/sipp-3.5.2.tar.gz + - tar -xvzf sipp-3.5.2.tar.gz + - cd sipp-3.5.2 + - ./configure + - make - export PATH="$PWD:$PATH" - cd .. script: - - pytest tests/ + - pytest tests/ \ No newline at end of file