mirror of
https://gitlab.com/kupfer/kupferbootstrap.git
synced 2025-02-23 05:35:44 -05:00
60 lines
1.2 KiB
YAML
60 lines
1.2 KiB
YAML
stages:
|
|
- check
|
|
- build
|
|
- deploy
|
|
|
|
format:
|
|
stage: check
|
|
image: python
|
|
before_script:
|
|
- pip install yapf autoflake
|
|
script:
|
|
- ./format.sh --check
|
|
|
|
typecheck:
|
|
stage: check
|
|
image: python
|
|
before_script:
|
|
- pip install mypy
|
|
script:
|
|
- ./typecheck.sh --non-interactive --junit-xml mypy-report.xml
|
|
artifacts:
|
|
reports:
|
|
junit: mypy-report.xml
|
|
|
|
build_docker:
|
|
stage: build
|
|
image: docker:latest
|
|
services: ['docker:dind']
|
|
before_script:
|
|
- echo "$CI_REGISTRY_PASSWORD" | docker login -u "$CI_REGISTRY_USER" --password-stdin "$CI_REGISTRY"
|
|
script:
|
|
- docker build --pull -t "${CI_REGISTRY_IMAGE}:${CI_COMMIT_SHA}" -t "${CI_REGISTRY_IMAGE}:${CI_COMMIT_REF_SLUG}" .
|
|
- if [[ "$CI_COMMIT_REF_NAME" == "main" ]]; then docker image tag "${CI_REGISTRY_IMAGE}:${CI_COMMIT_SHA}" "${CI_REGISTRY_IMAGE}:latest"; fi
|
|
- docker push -a "${CI_REGISTRY_IMAGE}"
|
|
only:
|
|
- main
|
|
- dev
|
|
|
|
.docs:
|
|
image: "${CI_REGISTRY_IMAGE}:dev"
|
|
before_script:
|
|
- pacman -Sy --noconfirm python-sphinx-{click,furo}
|
|
script:
|
|
- (cd docs && make)
|
|
- mv docs/html public
|
|
artifacts:
|
|
paths:
|
|
- public
|
|
|
|
build_docs:
|
|
stage: build
|
|
extends: .docs
|
|
except:
|
|
- dev
|
|
|
|
pages:
|
|
stage: deploy
|
|
extends: .docs
|
|
only:
|
|
- dev
|