try python again

This commit is contained in:
TLINDEN
2015-04-19 15:32:58 +02:00
parent 0e4b1eacf4
commit 803a127ff1

View File

@@ -2,6 +2,7 @@ language: c
os: os:
- linux - linux
before_install: before_install:
# runtime dependency
- git clone https://github.com/jedisct1/libsodium - git clone https://github.com/jedisct1/libsodium
- cd libsodium - cd libsodium
- ./autogen.sh - ./autogen.sh
@@ -9,6 +10,8 @@ before_install:
- make - make
- sudo make install - sudo make install
- cd .. - cd ..
#
# unittest dependencies, perl modules
- wget http://search.cpan.org/CPAN/authors/id/T/TL/TLINDEN/Config-General-2.56.tar.gz - wget http://search.cpan.org/CPAN/authors/id/T/TL/TLINDEN/Config-General-2.56.tar.gz
- tar xvzf Config-General-2.56.tar.gz - tar xvzf Config-General-2.56.tar.gz
- cd Config-General-2.56 - cd Config-General-2.56
@@ -27,21 +30,31 @@ before_install:
- perl Makefile.PL && make - perl Makefile.PL && make
- sudo make install - sudo make install
- cd .. - cd ..
- wget http://valgrind.org/downloads/valgrind-3.10.1.tar.bz2 #
- tar xvjf valgrind-3.10.1.tar.bz2 # for debugging - just in case, uncomment this and the next if needed
- cd valgrind-3.10.1 #- wget http://valgrind.org/downloads/valgrind-3.10.1.tar.bz2
- ./configure --prefix=/usr #- tar xvjf valgrind-3.10.1.tar.bz2
- make #- cd valgrind-3.10.1
- sudo make install #- ./configure --prefix=/usr
- cd .. #- make
- sudo apt-get update #- sudo make install
- sudo apt-get install libc6-dbg #- cd ..
#
# valgrind runtime dependency
#- sudo apt-get update
#- sudo apt-get install libc6-dbg
#
# python bindings runtime dependencies
- sudo apt-get install python-pip python-dev libffi-dev libffi5
- sudo pip install cffi
#
# finally prepare autoconf stuff
- ./autogen.sh - ./autogen.sh
compiler: compiler:
- clang - clang
- gcc - gcc
script: script:
- ./configure - ./configure --enable-python-binding
- make - make
- make check - make check
- make test - make test