Revision c3829db1cd2e47380fe89b106e0669ae949fdaf4 authored by Marge Bot on 13 September 2022, 16:23:29 UTC, committed by Marge Bot on 13 September 2022, 16:23:29 UTC
Co-authored-by: Pierrick Couderc <pierrick.couderc@nomadic-labs.com>

Approved-by: Ole Krüger <ole.kruger@trili.tech>
Approved-by: Emma Turner <1623821-emturner@users.noreply.gitlab.com>
Approved-by: Thomas Letan <lthms@nomadic-labs.com>

See merge request https://gitlab.com/tezos/tezos/-/merge_requests/6268
2 parent s e1d133e + 0c01ae9
Raw File
trigger.yml
---
# Note: The purpose of this job is to launch the CI manually in certain cases 
# (the rules are defined in the rules_template__trigger fragment of the 
# template.yml file). The objective is not to run computing when it is not
# necessary and the decision to do so belongs to the developer

trigger:
  extends:
    - .image_template__runtime_build_test_dependencies_template
    - .rules_template__trigger
  stage: trigger
  # This job is simple and fast
  allow_failure: false
  timeout: "10m"
  script:
    - echo 'Trigger pipeline 🤠'
back to top