Skip to content
Snippets Groups Projects
Verified Commit c0a2af5b authored by Timm Fitschen's avatar Timm Fitschen
Browse files

WIP: pipeline - add test for pages

parent 22b61759
No related branches found
No related tags found
No related merge requests found
Pipeline #9322 passed
Pipeline: caosdb-cppinttest

#9328

    ...@@ -120,22 +120,25 @@ trigger_inttest: ...@@ -120,22 +120,25 @@ trigger_inttest:
    # Build the sphinx documentation and make it ready for deployment by Gitlab Pages # Build the sphinx documentation and make it ready for deployment by Gitlab Pages
    # Special job for serving a static website. See https://docs.gitlab.com/ee/ci/yaml/README.html#pages # Special job for serving a static website. See https://docs.gitlab.com/ee/ci/yaml/README.html#pages
    pages_prepare: &pages_prepare .pages_prepare: &pages_prepare
    tags: [ cached-dind ] tags: [ cached-dind ]
    stage: deploy stage: deploy
    only: needs: []
    refs:
    - /^release-.*$/i
    script: script:
    - mkdir -p build - mkdir -p build
    - cd build - cd build
    - cmake .. - cmake ..
    - cmake --build . --target doc-sphinx - cmake --build . --target doc-sphinx
    - cp -r doc/sphinx_out ../public - cp -r doc/sphinx_out ../public
    artifacts:
    paths: test_pages:
    - public <<: *pages_prepare
    pages: pages:
    <<: *pages_prepare <<: *pages_prepare
    only: only:
    - schedule refs:
    - /^release-.*$/i
    artifacts:
    paths:
    - public
    0% Loading or .
    You are about to add 0 people to the discussion. Proceed with caution.
    Please register or to comment