Add a very basic gitlab-ci.yml file

This commit is contained in:
louiz’ 2016-12-05 00:21:20 +01:00
parent 0dece5c7e1
commit 2243687c44

13
.gitlab-ci.yml Normal file
View file

@ -0,0 +1,13 @@
test:
tags:
- docker
image: ubuntu:latest
script:
- apt update
- apt install -y python3 cython3 git python3-setuptools python3-pyasn1
- git clone git://git.louiz.org/slixmpp
- pushd slixmpp
- python3 setup.py build
- python3 setup.py install
- popd
- python3 setup.py test