b18b2de6af
Includes the external CI template from unboundsoftware to enhance the CI configuration. This change streamlines the setup process and maintains consistency across projects.
33 lines
516 B
YAML
33 lines
516 B
YAML
include:
|
|
- template: 'Workflows/MergeRequest-Pipelines.gitlab-ci.yml'
|
|
- project: unboundsoftware/ci-templates
|
|
file: Defaults.gitlab-ci.yml
|
|
|
|
stages:
|
|
- build
|
|
- deploy-prod
|
|
|
|
image: buildtool/build-tools:${BUILDTOOLS_VERSION}
|
|
|
|
build:
|
|
stage: build
|
|
script:
|
|
- build
|
|
- push
|
|
artifacts:
|
|
paths:
|
|
- release/
|
|
- coverage.html
|
|
- k8s
|
|
|
|
deploy-prod:
|
|
stage: deploy-prod
|
|
before_script:
|
|
- echo Deploy to prod
|
|
script:
|
|
- deploy prod
|
|
only:
|
|
- master
|
|
environment:
|
|
name: prod
|