Execute GitLab-CI docker jobs
Project description
GitLab-CI Job Executor
This is a simple tool to parse and expand a .gitlab-ci.yml file to then execute GitLab-CI jobs in a docker container.
It can be used either as a library or a command line executable.
Note
This tool was made to fit the needs of the authors first. Suggestions on what should be implemented next are welcomed.
Requirements
- Python 3
Main features
- No need to commit before running a job since it mounts the working directory in the job's container.
extendssupport for jobs templates.includesupport to import jobs and templates from other files. Its behavior is as close as possible to how GitLab does it (https://docs.gitlab.com/ee/ci/yaml/README.html#include).- Supports
local,remote,projectandtemplateincludes.
- Supports
- For
include:projecttype includes:- The included file needs to be accessible by an HTTP GET request made using the URL pattern.
- The pattern (which can be passed as an argument) has 2 variables possible to place in it: 'group' and 'project'
- The values will correspond to the 'project' key of the include ({group}/{project})
- This will follow defaults GitLab Pages URL with subgroup being part of {project}.
- Supported schemes are http://, https:// and file://
- You can look at the setup used by our projects in https://gitlab.com/uncrns for a setup that is compatible
with
gitlab-job-exec.
- Possibility for extra volumes to mount to the container running the job.
- Possibility to pass extra/overrides environment variables to the job.
- Configuration file for the command line interface.
!referencetag support.
Command line interface
For the command line executable, we suggest using gitlab-job-exec --help to get detailed usage information.
Library
class GitlabCI(filename, include_pattern, template_url)
The constructor will do the parsing and expansion of the .gitlab-ci.yml file.
filename: the path to the.gitlab-ci.ymlfile to read and parse.include_pattern: The pattern to use forinclude:projectfile includes. Defaults tohttps://{group}.gitlab.io/{project}which is the default URL for GitLab Pages.template_url: Base URL to use to fetch GitLab templates forinclude:template.
GitlabCI.defaults: Contains the details of the default job (if defined) to define global defaults.
GitlabCI.include_pattern: The include pattern passed to the constructor.
GitlabCI.jobs: Dictionary representing the different jobs available to execute, excluding jobs starting with . or global attributes
not representing a complete job. Keys are the jobs' names and the values are instances of gitlab_job_exec.GitlabJobs.
GitlabCI.stages: The list of stages defined in the pipeline definition.
GitlabCI.template_url: The template base URL passed to the constructor.
GitlabCI.variables: Dictionary containing the global variables defined by the variables keyword in the pipeline definition.
class GitlabJob(name, parameters, defaults, global_variables)
name: Name of the job.parameters: Other job parameters.defaults: Values in theGitlabCI.defaultsdict.global_variables: Values in theGitlabCI.variablesdict.
The keys before_script, image, name, script, services, stage and variables are available members with
values equal to the job's definition.
classmethod GitlabJobs.run(extra_variables, extra_volumes, pull_image, user):
Runs a job in a docker container and returns the exit code of the script.
extra_variables: Environment variables to pass to the job. They will override existing values defined in the job.extra_volumes: Extra volumes to mount in the job's container. The format is the one used bydocker.DockerClient.containers.run()for volumes.pull_image: Boolean indicating if the docker image should be pulled or not before starting the job.user: The user to use in the container. The format used is the same as thedocker.DockerClient.containers.run().
Predefined GitLab environment variables
GitLab-CI is defining a lot of environment variables that can be used in a pipeline. We have implemented the following variables that will be passed to the jobs:
| Variable | Value |
|---|---|
| CI_PIPELINE_ID | Current date and time (ex:202102190830) |
| CI_PIPELINE_IID | Current date and time (ex:202102190830) |
| CI_PIPELINE_SOURCE | "local" |
| CI_PROJECT_DIR | The current working directory |
| CI_PROJECT_NAME | The base name of the current working directory |
| CI_PROJECT_NAMESPACE | The directory in which the cwd is located (dirname of ../). Prefixed with ${CI_PROJECT_ROOT_NAMESPACE}/ if defined |
| CI_PROJECT_PATH | "local/${CI_PROJECT_NAME}" |
| CI_PROJECT_ROOT_NAMESPACE | Empty by defaults |
| CI_PROJECT_URL | "https://localhost/${CI_PROJECT_NAME}" |
| CI_REGISTRY | "registry.gitlab.com" |
| CI_REGISTRY_IMAGE | "registry.gitlab.com/local/${CI_PROJECT_NAME}" |
| CI_SERVER_URL | "https://gitlab.com" |
Main unsupported features/current limitation
after_scriptis not being read. (See #8)- Override of Docker entrypoint and command for
servicescontainers. - Health check on services/wait for services to be ready before starting the job.
- Have an array of
extendsin a job. (See #23) - Environment variables regarding the namespace of a project only supports 1 level of dynamic value. (See #27)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file gitlab_job_exec-1.6.112.tar.gz.
File metadata
- Download URL: gitlab_job_exec-1.6.112.tar.gz
- Upload date:
- Size: 16.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e6ba1b6a5a8e189e18c321a76795c0f8354d53adedb3d1fae1343cf1860013ac
|
|
| MD5 |
7299f2419d8b5635e8b71d176963facd
|
|
| BLAKE2b-256 |
b36726922f285ffc509882defd04ea054bf3266dd2aabdfc8e59cf4079542815
|
File details
Details for the file gitlab_job_exec-1.6.112-py3-none-any.whl.
File metadata
- Download URL: gitlab_job_exec-1.6.112-py3-none-any.whl
- Upload date:
- Size: 15.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9c3bbf8f188d1eb68d4160427e4a19cb43bef09a994e806dea6a91edf49bc4b4
|
|
| MD5 |
69cb084ea1902a8380026d54d8b83976
|
|
| BLAKE2b-256 |
bbcf141017234a22b7cea79aee2d2ca9134601d3a7b9e0ecc25e4f67b8424a16
|