forked from openlp/openlp
Added GitLab CI configuration
This commit is contained in:
parent
9d16ae2b06
commit
2ae1a279c1
35
.gitlab-ci.yml
Normal file
35
.gitlab-ci.yml
Normal file
@ -0,0 +1,35 @@
|
||||
stages:
|
||||
- test
|
||||
|
||||
test-debian:
|
||||
stage: test
|
||||
image: registry.gitlab.com/openlp/runner:debian
|
||||
before_script:
|
||||
- sh scripts/generate_resources.sh
|
||||
script:
|
||||
- xvfb-run -s '-screen 0 1024x768x24' pytest-3 -Wignore
|
||||
|
||||
test-ubuntu:
|
||||
stage: test
|
||||
image: registry.gitlab.com/openlp/runner:ubuntu
|
||||
before_script:
|
||||
- sh scripts/generate_resources.sh
|
||||
script:
|
||||
- xvfb-run -s '-screen 0 1024x768x24' pytest-3 -Wignore
|
||||
|
||||
test-fedora:
|
||||
stage: test
|
||||
image: registry.gitlab.com/openlp/runner:fedora
|
||||
before_script:
|
||||
- sh scripts/generate_resources.sh
|
||||
script:
|
||||
- xvfb-run -s '-screen 0 1024x768x24' pytest-3 -Wignore
|
||||
|
||||
test-macos:
|
||||
stage: test
|
||||
tags:
|
||||
- macos
|
||||
before_script:
|
||||
- sh scripts/generate_resources.sh
|
||||
script:
|
||||
- python3 -m pytest -v --color=no --disable-warnings --ignore=tests/utils
|
Loading…
Reference in New Issue
Block a user