shlax/.gitlab-ci.yml
2020-02-16 18:21:04 +01:00

15 lines
310 B
YAML

build:
cache:
key: cache
paths: [.cache]
image: yourlabs/shlax
script: ./shlaxfile.py build
stage: build
pypi:
image: yourlabs/python
only: [tags]
script: ./shlaxfile.py pypi
stage: deploy
test: {image: 'yourlabs/shlax:$CI_COMMIT_SHORT_SHA', script: ./shlaxfile.py test,
stage: test}