FAQ | This is a LIVE service | Changelog

Skip to content
Commits on Source (2)
......@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [6.4.3] - 2024-12-13
### Fixed
- `release-it` jobs prevented from running in child pipelines.
## [6.4.2] - 2024-12-11
### Fixed
......
......@@ -32,6 +32,17 @@ at the _end_ of the `include` section of your CI configuration. Note that you
will have to override the `rules:` sections of the various security scanning and
test jobs appropriately.
## Adding Common Pipelines
Newly added common pipeline components should be mindful that they can be
triggered in some repositories by the `multi-target-docker-images` pipeline.
This pipeline is used to create multiple output images from a single repository,
and to do so creates a child pipeline to run the actual build.
If the common pipeline being added should run once only in the parent pipeline
it must be explicitly disabled under [the multi target
definition](auto-devops/multi-target-docker-images.gitlab-ci.yml).
## Specific documentation
The following documents describe support for specific languages or repository
......
......@@ -43,3 +43,4 @@ variables:
DEPENDENCY_SCANNING_DISABLED: $MULTI_DOCKER_IMAGE_BUILD_ENABLED
SAST_DISABLED: $MULTI_DOCKER_IMAGE_BUILD_ENABLED
PRE_COMMIT_DISABLED: $MULTI_DOCKER_IMAGE_BUILD_ENABLED
RELEASE_IT_DISABLED: $MULTI_DOCKER_IMAGE_BUILD_ENABLED