From 2243687c442443ba56b22dd142a97b2811e796e8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?louiz=E2=80=99?= Date: Mon, 5 Dec 2016 00:21:20 +0100 Subject: Add a very basic gitlab-ci.yml file --- .gitlab-ci.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .gitlab-ci.yml 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 -- cgit v1.2.3