Skip to content
Snippets Groups Projects
Commit 76869a7a authored by Corné Lukken's avatar Corné Lukken
Browse files

CWG-67: Fail any job we have not yet implemented

parent 044146b4
No related branches found
No related tags found
1 merge request!21Resolve CWG-68
Pipeline #53075 passed with warnings
Pipeline: Python Package

#53076

    ...@@ -95,21 +95,25 @@ package_files: ...@@ -95,21 +95,25 @@ package_files:
    package_docs: package_docs:
    stage: package stage: package
    allow_failure: true
    artifacts: artifacts:
    expire_in: 1w expire_in: 1w
    paths: paths:
    - docs/* # update path to match the dest dir for documentation - docs/* # update path to match the dest dir for documentation
    script: script:
    - echo "build and collect docs" - echo "build and collect docs"
    - exit 1
    run_integration_tests: run_integration_tests:
    stage: integration stage: integration
    allow_failure: true
    needs: needs:
    - package_files - package_files
    script: script:
    - echo "make sure to move out of source dir" - echo "make sure to move out of source dir"
    - echo "install package from filesystem (or use the artefact)" - echo "install package from filesystem (or use the artefact)"
    - echo "run against foreign systems (e.g. databases, cwl etc.)" - echo "run against foreign systems (e.g. databases, cwl etc.)"
    - exit 1
    publish_on_gitlab: publish_on_gitlab:
    stage: publish stage: publish
    ...@@ -163,6 +167,7 @@ publish_on_pypi: ...@@ -163,6 +167,7 @@ publish_on_pypi:
    publish_to_readthedocs: publish_to_readthedocs:
    stage: publish stage: publish
    allow_failure: true
    environment: readthedocs environment: readthedocs
    needs: needs:
    - package_docs - package_docs
    ...@@ -171,3 +176,4 @@ publish_to_readthedocs: ...@@ -171,3 +176,4 @@ publish_to_readthedocs:
    - if: $CI_COMMIT_TAG - if: $CI_COMMIT_TAG
    script: script:
    - echo "scp docs/* ???" - echo "scp docs/* ???"
    - exit 1
    0% Loading or .
    You are about to add 0 people to the discussion. Proceed with caution.
    Please register or to comment