diff options
author | Filipe Laíns <lains@archlinux.org> | 2020-05-21 00:15:16 +0200 |
---|---|---|
committer | Lukas Fleischer <lfleischer@archlinux.org> | 2021-02-20 17:24:30 +0100 |
commit | db02227cc467ac9b9abcd9ee28bb10b2ef62cf4b (patch) | |
tree | 24b267a80ed92c6d63b58249b4dd64cf2da51c41 | |
parent | 71740a75a210907cee418a6c404e05ef4710fa9b (diff) | |
download | aur-db02227cc467ac9b9abcd9ee28bb10b2ef62cf4b.tar.gz aur-db02227cc467ac9b9abcd9ee28bb10b2ef62cf4b.tar.xz |
ci: add gitlab ci
Signed-off-by: Filipe Laíns <lains@archlinux.org>
Signed-off-by: Lukas Fleischer <lfleischer@archlinux.org>
-rw-r--r-- | .gitlab-ci.yml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 00000000..d463b109 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,12 @@ +image: archlinux + +before_script: + - pacman -Syu --noconfirm --noprogressbar --needed + base-devel git gpgme protobuf pyalpm python-mysql-connector + python-pygit2 python-srcinfo python-bleach python-markdown + python-sqlalchemy python-alembic python-pytest python-werkzeug + python-pytest-tap + +test: + script: + - make -C test |