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
Checking pipeline status
......@@ -120,22 +120,25 @@ trigger_inttest:
# 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
pages_prepare: &pages_prepare
.pages_prepare: &pages_prepare
tags: [ cached-dind ]
stage: deploy
only:
refs:
- /^release-.*$/i
needs: []
script:
- mkdir -p build
- cd build
- cmake ..
- cmake --build . --target doc-sphinx
- cp -r doc/sphinx_out ../public
artifacts:
paths:
- public
test_pages:
<<: *pages_prepare
pages:
<<: *pages_prepare
only:
- schedule
refs:
- /^release-.*$/i
artifacts:
paths:
- public
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