booplaysgba/.gitlab-ci.yml

21 lines
360 B
YAML
Raw Permalink Normal View History

2021-11-01 13:29:07 +00:00
stages:
- lint
- 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:50:27 +00:00
docker:
stage: build
script:
- docker build --tag server -f Dockerfile .
- docker build --tag emulator -f Dockerfile .
only:
- master