2fc1098166
Adds the Defaults.gitlab-ci.yml to the CI configuration, allowing for a more standardized setup across projects. This change enhances efficiency by leveraging shared configurations, reducing the need for duplicate settings in individual pipeline files.
19 lines
361 B
YAML
19 lines
361 B
YAML
include:
|
|
- template: 'Workflows/MergeRequest-Pipelines.gitlab-ci.yml'
|
|
- project: unboundsoftware/ci-templates
|
|
file: Defaults.gitlab-ci.yml
|
|
- project: unboundsoftware/ci-templates
|
|
file: Release.gitlab-ci.yml
|
|
|
|
stages:
|
|
- build
|
|
|
|
image: buildtool/build-tools:${BUILDTOOLS_VERSION}
|
|
|
|
build:
|
|
stage: build
|
|
script:
|
|
- unset BUILDTOOLS_CONTENT
|
|
- build
|
|
- push
|