2019-09-17 05:20:23 +00:00
|
|
|
stages:
|
|
|
|
- test
|
2019-10-10 15:26:56 +00:00
|
|
|
- deploy
|
2019-09-17 05:20:23 +00:00
|
|
|
|
2019-10-23 20:09:37 +00:00
|
|
|
lint-python:
|
2019-10-26 17:59:24 +00:00
|
|
|
stage: test
|
2019-09-26 16:54:38 +00:00
|
|
|
image: openlp/debian
|
2019-09-18 16:44:39 +00:00
|
|
|
script:
|
2019-10-23 20:09:37 +00:00
|
|
|
- sh scripts/generate_resources.sh
|
2019-09-18 16:44:39 +00:00
|
|
|
- flake8
|
|
|
|
|
2019-10-23 20:09:37 +00:00
|
|
|
lint-javascript:
|
2019-10-26 17:59:24 +00:00
|
|
|
stage: test
|
2019-10-23 20:09:37 +00:00
|
|
|
image: openlp/angular
|
|
|
|
script:
|
|
|
|
- yarn install
|
|
|
|
- yarn lint
|
|
|
|
|
2019-09-17 05:20:23 +00:00
|
|
|
test-debian:
|
|
|
|
stage: test
|
2019-09-26 16:54:38 +00:00
|
|
|
image: openlp/debian
|
2019-09-17 05:20:23 +00:00
|
|
|
script:
|
2019-10-23 20:09:37 +00:00
|
|
|
- sh scripts/generate_resources.sh
|
2019-10-18 16:54:00 +00:00
|
|
|
- xvfb-run -s '-screen 0 1024x768x24' pytest-3 --color=no --disable-warnings --cov openlp --cov-report term
|
2019-10-11 18:48:27 +00:00
|
|
|
- mv .coverage linux.coverage
|
2019-10-10 15:26:56 +00:00
|
|
|
artifacts:
|
|
|
|
paths:
|
2019-10-11 18:48:27 +00:00
|
|
|
- linux.coverage
|
2019-09-17 05:20:23 +00:00
|
|
|
|
|
|
|
test-ubuntu:
|
|
|
|
stage: test
|
2019-09-26 16:54:38 +00:00
|
|
|
image: openlp/ubuntu
|
2019-09-17 05:20:23 +00:00
|
|
|
script:
|
2019-10-23 20:09:37 +00:00
|
|
|
- sh scripts/generate_resources.sh
|
2019-10-18 16:54:00 +00:00
|
|
|
- xvfb-run -s '-screen 0 1024x768x24' pytest-3 --color=no --disable-warnings
|
2019-09-17 05:20:23 +00:00
|
|
|
|
|
|
|
test-fedora:
|
|
|
|
stage: test
|
2019-09-26 16:54:38 +00:00
|
|
|
image: openlp/fedora
|
2019-09-17 05:20:23 +00:00
|
|
|
script:
|
2019-10-23 20:09:37 +00:00
|
|
|
- sh scripts/generate_resources.sh
|
2019-10-18 16:54:00 +00:00
|
|
|
- xvfb-run -s '-screen 0 1024x768x24' pytest-3 --color=no --disable-warnings
|
2019-09-17 05:20:23 +00:00
|
|
|
|
2019-10-06 06:09:33 +00:00
|
|
|
test-arch:
|
|
|
|
stage: test
|
|
|
|
image: openlp/arch
|
|
|
|
script:
|
2019-10-23 20:09:37 +00:00
|
|
|
- sh scripts/generate_resources.sh
|
2019-10-18 16:54:00 +00:00
|
|
|
- xvfb-run -s '-screen 0 1024x768x24' pytest --color=no --disable-warnings
|
2019-10-06 06:09:33 +00:00
|
|
|
|
2019-09-17 05:20:23 +00:00
|
|
|
test-macos:
|
|
|
|
stage: test
|
|
|
|
tags:
|
|
|
|
- macos
|
2019-10-23 20:09:37 +00:00
|
|
|
script:
|
2019-09-19 08:52:59 +00:00
|
|
|
- export PATH=/opt/local/bin:$PATH
|
2019-09-17 05:20:23 +00:00
|
|
|
- sh scripts/generate_resources.sh
|
2019-10-11 18:48:27 +00:00
|
|
|
- python3 -m pytest --color=no --disable-warnings --cov openlp
|
|
|
|
- mv .coverage macos.coverage
|
|
|
|
artifacts:
|
|
|
|
paths:
|
|
|
|
- macos.coverage
|
2019-09-19 08:52:59 +00:00
|
|
|
only:
|
|
|
|
- master@openlp/openlp
|
2019-10-10 15:26:56 +00:00
|
|
|
|
2019-10-23 20:09:37 +00:00
|
|
|
test-display:
|
|
|
|
stage: test
|
|
|
|
image: openlp/angular
|
|
|
|
script:
|
|
|
|
- yarn install
|
|
|
|
- yarn test --browsers ChromiumHeadlessCI
|
|
|
|
|
2020-04-24 06:39:53 +00:00
|
|
|
upload-pypi:
|
|
|
|
stage: deploy
|
|
|
|
image: openlp/debian
|
|
|
|
script:
|
|
|
|
- python3 setup.py sdist bdist_wheel
|
|
|
|
- twine upload dist/*
|
|
|
|
only:
|
|
|
|
- tags
|
|
|
|
|
2019-10-10 15:26:56 +00:00
|
|
|
pages:
|
|
|
|
stage: deploy
|
2019-10-11 18:48:27 +00:00
|
|
|
image: openlp/debian
|
2019-10-10 15:26:56 +00:00
|
|
|
script:
|
2020-09-28 18:28:57 +00:00
|
|
|
- fixpaths linux.coverage
|
|
|
|
- fixpaths macos.coverage
|
2019-12-04 18:15:24 +00:00
|
|
|
- python3-coverage combine linux.coverage macos.coverage
|
2019-10-11 18:48:27 +00:00
|
|
|
- python3-coverage html
|
2019-10-10 15:26:56 +00:00
|
|
|
- mv htmlcov public
|
2019-10-11 18:48:27 +00:00
|
|
|
- python3-coverage report
|
2019-10-10 15:26:56 +00:00
|
|
|
artifacts:
|
|
|
|
paths:
|
|
|
|
- public
|
|
|
|
expire_in: 30 days
|
|
|
|
dependencies:
|
|
|
|
- test-debian
|
2019-10-11 18:48:27 +00:00
|
|
|
- test-macos
|
2019-10-10 15:26:56 +00:00
|
|
|
only:
|
|
|
|
- master@openlp/openlp
|