This repository has been archived on 2026-03-07. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
pre-commit-node/.gitlab-ci.yml
T
argoyle b4d238849c fix(ci): unset BUILDKIT_HOST in build stage script
The build stage script now unsets the BUILDKIT_HOST 
environment variable to ensure a clean build process. This 
prevents potential conflicts related to Docker BuildKit 
during the build.
2025-12-09 15:12:42 +01:00

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