Add a very basic gitlab-ci.yml file
This commit is contained in:
parent
0dece5c7e1
commit
2243687c44
1 changed files with 13 additions and 0 deletions
13
.gitlab-ci.yml
Normal file
13
.gitlab-ci.yml
Normal 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
|
Loading…
Reference in a new issue