Skip to content
Snippets Groups Projects
Commit 05cb41fe authored by Georges Racinet's avatar Georges Racinet :squid:
Browse files

CI/CD: stop running on push

Of course this project pipelines are quick, but we are so used
to have pipelines on MRs only that it's become a minor source of
trouble (e.g., `check-sdist` only on MRs)
parent 77367b18
No related branches found
No related tags found
1 merge request!121CI/CD: adaptation for new base images
Pipeline #101589 canceled
Pipeline: hgitaly

#101591

    ......@@ -10,6 +10,18 @@
    HEPTAPOD_VENV: /opt/heptapod
    PYTHON: $HEPTAPOD_VENV/bin/python
    workflow:
    rules:
    - if: '$CI_COMMIT_TAG'
    when: always
    # in practice, we're interested in MR events and occasional runs
    # from the web.
    - if: '$CI_PIPELINE_SOURCE == "merge_request_event"'
    - if: '$CI_PIPELINE_SOURCE == "web"'
    - if: '$CI_PIPELINE_SOURCE == "pipeline"'
    - if: '$CI_PIPELINE_SOURCE == "push"'
    when: never
    check-sdist:
    stage: compat
    rules:
    ......
    0% Loading or .
    You are about to add 0 people to the discussion. Proceed with caution.
    Finish editing this message first!
    Please register or to comment