Skip to content

Added job id to the base name for images and containers to avoid conflicts

When running multiple tests or building multiple images for the same repo in the same pipeline, the base name for the images/containers gets duplicated in each one of the runs, so when the first test that finishes deletes the image/container, then the other tests start failing because they no longer find the image/container.

Now the CI_JOB_ID env var is concatenated with the base_name for images and containers so the name is unique in each run.

Merge request reports