diff options
author | louiz’ <louiz@louiz.org> | 2016-12-05 00:21:20 +0100 |
---|---|---|
committer | louiz’ <louiz@louiz.org> | 2016-12-06 10:27:24 +0100 |
commit | 2243687c442443ba56b22dd142a97b2811e796e8 (patch) | |
tree | 50736bbb34ce205edc940cb82506d529ae27b9f0 | |
parent | 0dece5c7e1dfa453ed7d4ca43c95378dd6036ebd (diff) | |
download | poezio-2243687c442443ba56b22dd142a97b2811e796e8.tar.gz poezio-2243687c442443ba56b22dd142a97b2811e796e8.tar.bz2 poezio-2243687c442443ba56b22dd142a97b2811e796e8.tar.xz poezio-2243687c442443ba56b22dd142a97b2811e796e8.zip |
Add a very basic gitlab-ci.yml file
-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 |