Files
default-request-adder/.gitlab-ci.yml
T
argoyle 3aa798cf11 fix(ci): add default CI template for improved workflow
Updates the GitLab CI configuration to include the default CI 
template. This change ensures consistent and optimized pipeline 
behaviors across projects by leveraging the provided defaults, 
enhancing the overall CI/CD process.
2025-06-23 13:43:42 +02:00

21 lines
506 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:
- build
- curl -Os https://uploader.codecov.io/latest/linux/codecov
- chmod +x codecov
- ./codecov -t ${CODECOV_TOKEN} -R $CI_PROJECT_DIR -C $CI_COMMIT_SHA -r $CI_PROJECT_PATH
- push