2021-03-15 15:07:39 +00:00
|
|
|
pipeline:
|
|
|
|
unittest:
|
|
|
|
image: python
|
|
|
|
commands:
|
|
|
|
- pip install -r requirements.txt
|
2021-03-16 15:35:02 +00:00
|
|
|
- pip install flake8
|
2021-03-15 15:07:39 +00:00
|
|
|
- python3 test_tmdb.py
|
2021-09-23 12:39:40 +01:00
|
|
|
- flake8 --ignore=E501 --exclude=__init__.py,test_tmdb.py
|
2021-03-04 20:56:17 +00:00
|
|
|
|
2021-03-15 15:07:39 +00:00
|
|
|
build:
|
|
|
|
image: alpine
|
|
|
|
commands:
|
|
|
|
- apk add zip
|
2022-11-14 15:14:16 +00:00
|
|
|
- ./create_release.sh ${CI_COMMIT_SHA:0:8}
|
|
|
|
|
2021-03-15 15:07:39 +00:00
|
|
|
upload:
|
|
|
|
image: uploader
|
|
|
|
project: tmdb-bot
|
2022-11-14 15:14:16 +00:00
|
|
|
artifact: lomion.tmdb.${CI_COMMIT_SHA:0:8}.mbp
|