modbusmaster/.gitlab-ci.yml

30 lines
757 B
YAML
Raw Permalink Normal View History

2019-09-10 15:59:13 +02:00
stages:
- check
- deploy
build:
stage: check
image: registry.gitlab.com/wolutator/base-build-env:latest
tags:
- hottis
- linux
- docker
script:
2019-09-10 16:01:12 +02:00
- for I in src/*.py; do python -m py_compile $I; done
- for I in src/*.py; do python -m pycodestyle --max-line-length=120 $I; done
2019-09-10 15:59:13 +02:00
deploy:
stage: deploy
tags:
- hottis
- linux
- rpi
- modbus
only:
- deploy
script:
2019-09-10 16:55:12 +02:00
- sudo service modbusMaster stop
2019-09-10 16:40:59 +02:00
- cp src/*.py /opt/services/modbusMaster
2019-09-10 16:55:12 +02:00
- sudo service modbusMaster start
2019-09-10 16:58:59 +02:00