8c7b44974f
Removes the Docker service definition from the build stage in the GitLab CI configuration. This change is made to simplify the build process and reduce overhead, as the Docker service is no longer required for the current build tasks.
16 lines
261 B
YAML
16 lines
261 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:
|
|
- build
|
|
- push
|