This repository has been archived on 2023-09-20. You can view files and clone it, but cannot push or open issues or pull requests.
py-libreauth/.travis.yml

31 lines
690 B
YAML
Raw Normal View History

2017-12-16 22:05:51 +01:00
language: python
python:
- "3.3"
- "3.4"
- "3.5"
- "3.6"
- "3.6-dev"
- "3.7-dev"
- "nightly"
- "pypy3"
2017-12-16 22:51:02 +01:00
env:
global:
- PATH="$HOME/.cargo/bin:$PATH"
- LIBREAUTH_LIB_PATH="./liblibreauth.so"
2017-12-16 22:05:51 +01:00
script: python -m unittest discover
before_script:
- sudo apt-get update -qq
- curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain stable
- rustc --version
- cargo --version
- wget 'https://github.com/breard-r/libreauth/archive/v0.6.0.tar.gz' -O '/tmp/libreauth.tar.gz'
- tar -xvf '/tmp/libreauth.tar.gz'
- cd 'libreauth-0.6.0'
- make
2017-12-16 22:51:02 +01:00
- cp 'target/release/liblibreauth.so' '../liblibreauth.so'
2017-12-16 22:05:51 +01:00
- cd ..