Files
default-request-adder/.gitlab-ci.yml
T
argoyle 52d79599b6 ci: remove unnecessary variables and services from CI config
Simplify the CI configuration by removing the unused DOCKER_HOST 
variable and the Docker service. This streamlines the build process 
and eliminates potential points of failure, enhancing overall reliability.
2024-12-05 10:52:04 +01:00

19 lines
435 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
- 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