Files
pcp/.travis.yml

35 lines
740 B
YAML
Raw Normal View History

2015-04-13 18:38:00 +02:00
language: c
os:
- linux
before_install:
2015-04-13 19:18:36 +02:00
- git clone https://github.com/jedisct1/libsodium
2015-04-13 19:07:11 +02:00
- cd libsodium
- ./autogen.sh
- ./configure --prefix=/usr
2015-04-13 19:37:36 +02:00
- make
- sudo make install
2015-04-13 19:52:54 +02:00
- cd ..
- 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
- cd Config-General-2.56
- perl Makefile.PL && make
- sudo make install
- cd ..
- wget http://search.cpan.org/CPAN/authors/id/C/CH/CHORNY/Tie-IxHash-1.23.tar.gz
- tar xvzf Tie-IxHash-1.23.tar.gz
- cd Tie-IxHash-1.23
- perl Makefile.PL && make
- sudo make install
- cd ..
- ./autogen.sh
2015-04-13 18:38:00 +02:00
compiler:
2015-04-14 20:51:03 +02:00
- clang
2015-04-13 18:38:00 +02:00
- gcc
2015-04-13 19:07:11 +02:00
script:
2015-04-13 19:18:36 +02:00
- ./configure
2015-04-14 19:59:35 +02:00
- cat config.log
- make
2015-04-14 17:45:00 +02:00
- make check
- make test