Unable to run python package as part of Gitlab / Gitaly pre-receive hook
How do I install a python package so that gitaly can run it as part of a pre-receive hook? I’ve tried modifying the path variable within the script. Ive installed the python package as sudo. Regardless, I get exit codes: 127
Gitlab ci use compare_to for CI_OPEN_MERGE_REQUESTS
[[service]]:test-branches: <<: *test_stage cache: key: “${{CI_COMMIT_REF_NAME}-${CI_JOB_STAGE}-[[service]]}” paths: – services/[[service]]/vendor/ rules: – if: $CI_OPEN_MERGE_REQUESTS changes: compare_to: $CI_TARGET_BRANCH_NAME paths: – services/[ [ service ] ]/**/* – if: $CI_COMMIT_BRANCH changes: compare_to: ‘refs/heads/master’ paths: – services/[[service]]/**/* I basically want to create a job, based on above condition, if there are any merger equest open(in my case 1 per source […]
Trigger a pipeline from any project in a group
I have, in GitLab, a group containing multiple projects and I also have a .gitlab-ci.yml
file that is in one of the projects and that runs each time a change is pushed. However, I would like to be able to run this exact file in any of the projects in my group.
Running gitlab job when particular variable is given while scheduling
This is my gitlab-ci.yml file
Is it possible to execute multiple CI/CD components on a Gitlab pipeline?
Our team is creating a CI/CD component project for running common deployment tasks. In this scenario, we have a component called terraform
that inits and applies terraform code.