Die DB Systel GmbH ist Tochterunternehmen und der IT-Dienstleister der Deutschen Bahn. Das Unternehmen setzte 2015 825 Millionen Euro um und beschäftigt 3.600 Mitarbeiter. Es besitzt und betreibt drei physische Rechenzentren mit insgesamt rund 3.000 Servern. Darüber hinaus bietet DB Systel ...
This project is licensed under Apache-2.0, Copyright 2024 by DB Systel GmbH.About Web Components, based on DB UI Core, part of DB UX Design System Version 2. db-ui.github.io/elements/ Topics react javascript components angular web vue hacktoberfest Resources Readme License Apache-2.0...
$ pip show gcip -- INSERT --WARNING: Ignoring invalid distribution -otocore (/usr/local/lib/python3.9/site-packages)Name: gcipVersion: 1.0.0Summary: The Gitlab CI Python LibraryHome-page: https://gitlab.com/dbsystel/gitlab-ci-python-libraryAuthor: Thomas SteinbachAuthor-email: thomas.t....
https://gitlab.com/dbsystel/gitlab-ci-python-library/-/blob/main/gcip/core/need.py#L90 Setting pipeline ID in needs where pipeline ID matches the current pipeline will not break gitlab ci, so this rule is unnecessary. Incidentally, forcing this behavior breaks the ability to generate a do...
I would like to be able to use the gcip library to set the default image of a pipeline I'm generating. All of the jobs should...
See below: https://gitlab.com/dbsystel/gitlab-ci-python-library/-/blob/main/gcip/core/job.py#L513 This logic results in "None" being set as the value of self._needs when empty needs [] is passed to the Job constructor. [] has a special meaning separate from None - it specifies...
This doesn't work with the pipeline I'm trying to create because I'm consuming a template that is created by someone else and I do not control it. This is a hidden job that I'm including in my template and then I need to add abefore_scriptwhere I do some set up that the templat...
DB Systel GmbH gitlab-ci-python-library Issues #103 Error fetching labels.Add Support for retry KeywordIssue actions Please add support for the retry keyword: https://docs.gitlab.cn/14.0/ee/ci/yaml/README.html#retry0 0 To upload designs, you'll need to enable LFS and have an admin ...
def build_scan_push_image() -> Sequence:# when `create_cache=True` then the returned job was initialized with a cache objectkaniko_execute = kaniko.execute(create_cache=True,)# all other functions can request that cache object from the `kaniko_execute` job.# This requires to extend the ...
Sample User usage parent_job=Job(script=["echo'I am a dependent job'"],name="parent")parent2_job=Job(script=["echo'I am the second dependent job.'",name="parent2"]job=Job(script=["echo'I depend on parent job'"],name="child")job.add_dependencies(parent_job,parent2_job) ...