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
|
|
|
|
2022-02-12 22:50:27 +00:00
|
|
|
# pre-commit:
|
|
|
|
# stage: lint
|
|
|
|
# image: python:latest
|
|
|
|
# before_script:
|
|
|
|
# - pip install pre-commit
|
|
|
|
# - pre-commit install
|
|
|
|
# script:
|
|
|
|
# - pre-commit run --all-files
|
2022-02-12 22:47:59 +00:00
|
|
|
|
2022-02-12 22:50:27 +00:00
|
|
|
docker:
|
2022-02-12 22:47:59 +00:00
|
|
|
stage: build
|
|
|
|
script:
|
|
|
|
- docker build --tag server -f Dockerfile .
|
|
|
|
- docker build --tag emulator -f Dockerfile .
|
|
|
|
only:
|
|
|
|
- master
|