diff options
| author | Daniel P. Berrangé <berrange@redhat.com> | 2020-11-02 13:09:23 +0000 |
|---|---|---|
| committer | Thomas Huth <thuth@redhat.com> | 2020-11-10 08:51:30 +0100 |
| commit | 4daa9055beffa17ed47a71d52e7af219acc38e29 (patch) | |
| tree | 58668a51704318b7b298690f0bf511412273e5ea | |
| parent | 2deca810d8c2b8d0c56782ef8d9f4bfbfcacd261 (diff) | |
| download | focaccia-qemu-4daa9055beffa17ed47a71d52e7af219acc38e29.tar.gz focaccia-qemu-4daa9055beffa17ed47a71d52e7af219acc38e29.zip | |
gitlab: publish the docs built during CI
Most of the build jobs will create the sphinx documentation. If we expose this as an artifact of a "pages" job in a "public" directory, it will get published using GitLab Pages. This means a user can push a branch with docs changes to GitLab and view the results at https://yourusername.gitlab.io/qemu/ Signed-off-by: Daniel P. Berrangé <berrange@redhat.com> Message-Id: <20201102130926.161183-2-berrange@redhat.com> Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com> Tested-by: Philippe Mathieu-Daudé <philmd@redhat.com> Signed-off-by: Thomas Huth <thuth@redhat.com>
| -rw-r--r-- | .gitlab-ci.yml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 5763318d37..5993b64f22 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -417,3 +417,17 @@ check-dco: - $CI_PROJECT_NAMESPACE == 'qemu-project' && $CI_COMMIT_BRANCH == 'master' variables: GIT_DEPTH: 1000 + +pages: + image: $CI_REGISTRY_IMAGE/qemu/ubuntu2004:latest + stage: test + needs: + - job: build-system-ubuntu + artifacts: true + script: + - mkdir public + - mv build/docs/index.html public/ + - for i in devel interop specs system tools user ; do mv build/docs/$i public/ ; done + artifacts: + paths: + - public |