Skip to content

Pass artifacts in CI DAG needs

What does this MR do?

related issue: #14311 (closed)

Remove the need to define dependencies to filter artifacts when using DAG needs.

  1. Pass artifacts:
deploy-job:
  needs:
    - job: build-job-in-this-pipeline
      artifacts: true # default value
  script:
    - echo 'do something useful'

Equivalent with:

deploy-job:
  needs:
    - build-job-in-this-pipeline
  script:
    - echo 'do something useful'
  1. Do not pass artifacts:
deploy-job:
  needs:
    - job: build-job-in-this-pipeline
      artifacts: false
  script:
    - echo 'do something useful'

Equivalent with:

deploy-job:
  needs:
    - build-job-in-this-pipeline
  dependencies: []
  script:
    - echo 'do something useful'

Screenshots

Does this MR meet the acceptance criteria?

Conformity

Availability and Testing

Security

If this MR contains changes to processing or storing of credentials or tokens, authorization and authentication methods and other items described in the security review guidelines:

  • Label as security and @ mention @gitlab-com/gl-security/appsec
  • The MR includes necessary changes to maintain consistency between UI, API, email, or other methods
  • Security reports checked/validated by a reviewer from the AppSec team
Edited by Marius Bobin

Merge request reports