gitlab-ci-local
gitlab-ci-local copied to clipboard
Tired of pushing to test your .gitlab-ci.yml?
**Is your feature request related to a problem? Please describe.** When developing in a local project, I often times find myself in a subdirectory of a git repository, where I...
**Minimal .gitlab-ci.yml illustrating the issue** ```yml stages: - build job: stage: build services: - docker:dind image: docker:latest script: - docker login -u "$CI_REGISTRY_USER" -p "$CI_JOB_TOKEN" "$CI_REGISTRY" job2: stage: build services:...
**Is your feature request related to a problem? Please describe.** I would like to keep all gitlab-ci-local related data outside of my git projects, completely separate. Which seems to be...
**Is your feature request related to a problem? Please describe.** As mentioned in [this issue](https://github.com/firecow/gitlab-ci-local/issues/952#issuecomment-1847633566) and [this issue](https://github.com/firecow/gitlab-ci-local/issues/997#issuecomment-1847615833), it would be nice to have gitlab's [kubernetes executor](https://docs.gitlab.com/runner/executors/kubernetes.html) supported along with...
**.gitlab-ci.yml illustrating the issue**: ```yml variables: MY_FILE: example.txt stages: - build this runs: stage: build script: - echo $CI_JOB_NAME this does not: stage: build script: - echo $CI_JOB_NAME rules: -...
**Is your feature request related to a problem? Please describe.** My CI File includes a few project references, well... those ideally would be resolved. The git repository has 2 remote...
closes #932
I use marmail-cli in my CI. When using gitlab-ci-local :+1: * original sources files are updated while mermaid-cli run contenairized * permissions on source directory are also updated **Minimal .gitlab-ci.yml...
### Explanation to Developers: There seems to be a problem with how multiple variable blocks are being parsed in our `.gitlab-ci.yml` configuration file. The issue is causing conflicts for `gitlab-ci-local`...