Skip to content

Commit

Permalink
Ensure CI always validate builtin test cases
Browse files Browse the repository at this point in the history
Install necessary Python packages to satisfy the dependency of builtin
test cases including pip3. clang package was removed to eliminate
complexity with pip though.

TODO: it takes much longer time to set up Python packages rather than
compiling and validating dcurl itself.
  • Loading branch information
jserv committed Aug 2, 2018
1 parent f94b36f commit 6abb47b
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,14 @@
language: c

compiler:
- clang
- gcc

before_install:
- sudo apt-get install -y build-essential
- sudo apt-get install -y python3-pip
- sudo apt-get install -y python3-cffi
- sudo pip3 install --upgrade pip setuptools
- sudo pip3 install --ignore-installed pyota

script:
- make
- make check

0 comments on commit 6abb47b

Please sign in to comment.