2021-11-01 13:29:07 +00:00
|
|
|
stages:
|
|
|
|
- lint
|
2022-02-12 22:47:59 +00:00
|
|
|
- build
|
2021-11-01 13:29:07 +00:00
|
|
|
|
2021-11-02 20:39:50 +00:00
|
|
|
pre-commit:
|
2021-11-01 13:54:22 +00:00
|
|
|
stage: lint
|
2021-11-02 20:39:50 +00:00
|
|
|
image: python:latest
|
|
|
|
before_script:
|
2021-11-05 12:57:11 +00:00
|
|
|
- pip install pre-commit
|
2021-11-02 20:39:50 +00:00
|
|
|
- pre-commit install
|
2021-11-01 13:54:22 +00:00
|
|
|
script:
|
2021-11-02 20:39:50 +00:00
|
|
|
- pre-commit run --all-files
|
2022-02-12 22:47:59 +00:00
|
|
|
|
|
|
|
docker-compose:
|
|
|
|
stage: build
|
|
|
|
script:
|
|
|
|
- docker build --tag server -f Dockerfile .
|
|
|
|
- docker build --tag emulator -f Dockerfile .
|
|
|
|
only:
|
|
|
|
- master
|