mirror of
https://codeberg.org/scip/pcp.git
synced 2025-12-17 03:50:57 +01:00
24 lines
383 B
YAML
24 lines
383 B
YAML
language: c
|
|
os:
|
|
- linux
|
|
before_install:
|
|
- git clone https://github.com/jedisct1/libsodium
|
|
- cd libsodium
|
|
- ./autogen.sh
|
|
- ./configure --prefix=/usr
|
|
- make
|
|
- sudo make install
|
|
- cd ..
|
|
- ./autogen.sh
|
|
- git clone https://github.com/tlinden/p5mods tests/lib
|
|
compiler:
|
|
- clang
|
|
- gcc
|
|
script:
|
|
- ./configure
|
|
- find tests/lib -ls
|
|
- make
|
|
- make check
|
|
- make test
|
|
|