ci: Add missing dependency on doxygen sources for docs-generation jobs.
authorEmma Anholt <emma@anholt.net>
Mon, 3 Apr 2023 21:15:04 +0000 (14:15 -0700)
committerMarge Bot <emma+marge@anholt.net>
Tue, 4 Apr 2023 20:00:17 +0000 (20:00 +0000)
!22191 broke docs generation and marge didn't notice because of missing
 deps.

Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/22271>

docs/doxygen-wrapper.py
docs/gitlab-ci.yml

index b415f22..e3eb794 100755 (executable)
@@ -28,6 +28,7 @@ import os
 import subprocess
 import tempfile
 
+# You must update the paths in docs/gitlab-ci.yml's pages job when changing this.
 INPUT_PATHS = [
     'src/compiler/nir/nir.h',
     'src/intel/isl',
index f2b8426..ba4527a 100644 (file)
@@ -24,6 +24,10 @@ pages:
       changes: &docs-or-ci
       - docs/**/*
       - .gitlab-ci.yml
+      # Paths from doxygen-wrapper.py
+      - src/compiler/nir/nir.h
+      - src/intel/isl/**/*
+      - src/vulkan/runtime/**/*
       when: always
     # Other cases default to never