File tree Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Original file line number Diff line number Diff line change 22
22
- ' libc/docs/**'
23
23
- ' lld/docs/**'
24
24
- ' openmp/docs/**'
25
+ - ' polly/docs/**'
25
26
pull_request :
26
27
paths :
27
28
- ' llvm/docs/**'
33
34
- ' libc/docs/**'
34
35
- ' lld/docs/**'
35
36
- ' openmp/docs/**'
37
+ - ' polly/docs/**'
36
38
37
39
jobs :
38
40
check-docs-build :
71
73
- 'lld/docs/**'
72
74
openmp:
73
75
- 'openmp/docs/**'
76
+ polly:
77
+ - 'polly/docs/**'
74
78
- name : Fetch LLVM sources (PR)
75
79
if : ${{ github.event_name == 'pull_request' }}
76
80
uses : actions/checkout@v4
@@ -134,4 +138,9 @@ jobs:
134
138
run : |
135
139
cmake -B openmp-build -GNinja -DCMAKE_BUILD_TYPE=Release -DLLVM_ENABLE_PROJECTS="clang;openmp" -DLLVM_ENABLE_SPHINX=ON ./llvm
136
140
TZ=UTC ninja -C openmp-build docs-openmp-html
141
+ - name : Build Polly docs
142
+ if : steps.docs-changed-subprojects.outputs.polly_any_changed == 'true'
143
+ run : |
144
+ cmake -B polly-build -GNinja -DCMAKE_BUILD_TYPE=Release -DLLVM_ENABLE_PROJECTS="polly" -DLLVM_ENABLE_SPHINX=ON ./llvm
145
+ TZ=UTC ninja -C polly-build docs-polly-html docs-polly-man
137
146
You can’t perform that action at this time.
0 commit comments