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 an 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.
extends
support for jobs templates.include
support 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
,project
andtemplate
includes.
- Supports
- For
include:project
type includes:- The included file needs to be accessible by a 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.
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.yml
file to read and parse.include_pattern
: The pattern to use forinclude:project
file 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.defaults
dict.global_variables
: Values in theGitlabCI.variables
dict.
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_PATH | "local/${CI_PROJECT_NAME}" |
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_script
is not being read.- Override of Docker entrypoint and command for
services
containers. - Health check on services/wait for services to be ready before starting the job.
- Have an array of
extends
in a job.
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
File details
Details for the file gitlab-job-exec-1.0.83.tar.gz
.
File metadata
- Download URL: gitlab-job-exec-1.0.83.tar.gz
- Upload date:
- Size: 13.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.2 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.9.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 10a05df1306d0bd80aff44403240a6bfb9d5930e141e74f289efc72157fab5fb |
|
MD5 | cab814bf5c674c16d6128769129dbc06 |
|
BLAKE2b-256 | 0847f7514bc1f4cf8c0f0cc386de93182a8e776fba3b1f4bd13c351183e217ed |
File details
Details for the file gitlab_job_exec-1.0.83-py3-none-any.whl
.
File metadata
- Download URL: gitlab_job_exec-1.0.83-py3-none-any.whl
- Upload date:
- Size: 13.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.2 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.9.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3f897ff31a108789fb1f2e7968c59bcb128abd87f3792cd56933faee9db23502 |
|
MD5 | d3ace4149808b67bddddba7244b50ff6 |
|
BLAKE2b-256 | 9788f0ffdf715e6fea814e4e66d3607e0661e7dca6c09d903a6a4c91dfe63ca6 |