mirror of
https://github.com/haiwen/libsearpc.git
synced 2025-04-27 10:20:49 +00:00
26 lines
348 B
YAML
26 lines
348 B
YAML
sudo: false
|
|
language: python
|
|
python:
|
|
- "2.7"
|
|
- "3.5"
|
|
- "3.6"
|
|
compiler:
|
|
- gcc
|
|
- clang
|
|
addons:
|
|
apt:
|
|
packages:
|
|
- libjansson-dev
|
|
install:
|
|
- pip install future
|
|
before_install:
|
|
- git clean -x -f
|
|
- ./autogen.sh
|
|
script:
|
|
- ./configure
|
|
- make -j4
|
|
- make check -j4
|
|
- python pysearpc/test_pysearpc.py
|
|
notifications:
|
|
email: false
|