Mesa (master): ci: test docs for non-master builds

GitLab Mirror gitlab-mirror at kemper.freedesktop.org
Wed Jul 1 14:58:31 UTC 2020


Module: Mesa
Branch: master
Commit: 8774707b1e32aede2c906b0358159790d09928a1
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=8774707b1e32aede2c906b0358159790d09928a1

Author: Erik Faye-Lund <erik.faye-lund at collabora.com>
Date:   Mon Jun 22 11:10:29 2020 +0200

ci: test docs for non-master builds

This ensures that we test on CI before merge-requests gets merged.

Reviewed-by: Michel Dänzer <mdaenzer at redhat.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5469>

---

 .gitlab-ci.yml | 15 ++++++++++++++-
 1 file changed, 14 insertions(+), 1 deletion(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index ca9a22358c3..16bcc9ab10a 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -24,13 +24,16 @@ stages:
   - virgl
   - success
 
-pages:
+.docs-base:
   image: alpine
   stage: deploy
   script:
   - apk --no-cache add py3-pip
   - pip3 install sphinx sphinx_rtd_theme
   - sphinx-build -b html docs public
+
+pages:
+  extends: .docs-base
   artifacts:
     paths:
     - public
@@ -41,6 +44,16 @@ pages:
     - docs/**/*
     - .gitlab-ci.yml
 
+test-docs:
+  extends: .docs-base
+  except:
+    refs:
+    - master at mesa/mesa
+  only:
+    changes:
+    - docs/**/*
+    - .gitlab-ci.yml
+
 # When to automatically run the CI
 .ci-run-policy:
   rules:



More information about the mesa-commit mailing list