9c39290793
Removes unnecessary Docker service and variable configurations from the CI pipeline to streamline the build process and reduce complexity. This enhances clarity and avoids potential misconfigurations.
17 lines
290 B
YAML
17 lines
290 B
YAML
include:
|
|
- template: 'Workflows/MergeRequest-Pipelines.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
|