Files
pcp/.travis.yml

24 lines
338 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 ..
- ./autogen.sh
2015-04-13 18:38:00 +02:00
compiler:
- clang
- gcc
2015-04-13 19:07:11 +02:00
script:
2015-04-13 19:18:36 +02:00
- ./configure
- gcc sv.c -lsodium -o sv
- ./sv
- make
2015-04-14 17:45:00 +02:00
- make check
- make test