Skip to content

Commit

Permalink
Build libyaml on travis
Browse files Browse the repository at this point in the history
  • Loading branch information
perlpunk authored and ingydotnet committed Jun 30, 2018
1 parent 69244c1 commit a9c28e0
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,20 @@ matrix:
- python: pypy
env: TOXENV=pypy

# build libyaml
before_script:
- >-
cd /tmp

This comment has been minimized.

Copy link
@webknjaz

webknjaz Jul 2, 2018

It's better to have separate commands.

&& git clone https://github.com/yaml/libyaml.git -b 0.2.2-pre1 libyaml
&& cd libyaml
&& ./bootstrap
&& ./configure
&& make
&& make test-all
&& sudo make install
&& sudo ldconfig
&& cd "$TRAVIS_BUILD_DIR"
install: pip install cython tox

script: tox

0 comments on commit a9c28e0

Please sign in to comment.