travis apt-get install

This commit is contained in:
Olof hagsand 2019-02-04 14:38:41 +01:00
parent 2a2785090b
commit c81419e5e9
2 changed files with 4 additions and 4 deletions

View file

@ -5,5 +5,7 @@ branches:
- master - master
- develop - develop
before_script: before_script:
- sudo apt-get install -y libfcgi-dev
- ./test/travis/before_script.sh - ./test/travis/before_script.sh

View file

@ -1,7 +1,5 @@
#!/bin/sh #!/bin/sh
# Run this as before_script in the travis file # Travis pre-config script.
apt-get update && apt-get install -y \ # Clone and install CLIgen
libfcgi-dev
git clone https://github.com/olofhagsand/cligen.git git clone https://github.com/olofhagsand/cligen.git
(cd cligen && ./configure && make && sudo make install) (cd cligen && ./configure && make && sudo make install)