diff options
-rw-r--r-- | .gitlab-ci.yml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 00000000..abe39145 --- /dev/null +++ b/.gitlab-ci.yml @@ -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 |