diff options
-rw-r--r-- | .gitlab-ci.yml | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 000000000..6eb17b49c --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,25 @@ +before_script: + - echo "deb http://ftp.uk.debian.org/debian/ testing main" >> /etc/apt/sources.list + - apt-get update --fix-missing -qq + - apt-get install -y -qq bubblewrap + - apt-get install -y -qq python3.5 + - apt-get install -y -qq python3-pip + - apt-get install --force-yes -qq ostree gir1.2-ostree-1.0 python3-dev python3-gi + + # Debian version is behind/not compatible with latest sphinx + - apt-get remove python-requests + - pip3 install --upgrade pip + - pip3 install --upgrade requests + + +tests: + script: + - python3 setup.py test + + + +doc-build: + script: + - pip3 install sphinx + - cd doc + - make
\ No newline at end of file |