609c12da30
Unset the BUILDKITD_HOST variable in the build stage to ensure consistent build environments and prevent potential build issues. This change improves the CI/CD process reliability.
20 lines
385 B
YAML
20 lines
385 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
|
|
- unset BUILDKIT_HOST
|
|
- build
|
|
- push
|