diff options
| author | Aiden Grossman <agrossman154@yahoo.com> | 2023-11-24 02:20:58 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-11-24 02:20:58 -0800 |
| commit | 17fcad7f84a831e52f30d6417d97707b91b9848d (patch) | |
| tree | facb0345e2d39d12d44653270525f61b82485c57 /.github/workflows/docs.yml | |
| parent | 8a02b70324f03967a6697c782d2b2436d1e1bac2 (diff) | |
[Github] Build clang docs in CI if autogenerated files change (#72623)
These are unlikely to produce errors in the build, assuming that the
tablegen emitter works as expected, but we're still losing some
documentation build testing coverage but not building upon changes to
these files.
Diffstat (limited to '.github/workflows/docs.yml')
| -rw-r--r-- | .github/workflows/docs.yml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index d872097b239d..9c695e714edd 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -15,6 +15,9 @@ on: paths: - 'llvm/docs/**' - 'clang/docs/**' + - 'clang/include/clang/Basic/AttrDocs.td' + - 'clang/include/clang/Driver/ClangOptionDocs.td' + - 'clang/include/clang/Basic/DiagnosticDocs.td' - 'clang-tools-extra/docs/**' - 'lldb/docs/**' - 'libunwind/docs/**' @@ -29,6 +32,9 @@ on: paths: - 'llvm/docs/**' - 'clang/docs/**' + - 'clang/include/clang/Basic/AttrDocs.td' + - 'clang/include/clang/Driver/ClangOptionDocs.td' + - 'clang/include/clang/Basic/DiagnosticDocs.td' - 'clang-tools-extra/docs/**' - 'lldb/docs/**' - 'libunwind/docs/**' @@ -64,6 +70,9 @@ jobs: - 'llvm/docs/**' clang: - 'clang/docs/**' + - 'clang/include/clang/Basic/AttrDocs.td' + - 'clang/include/clang/Driver/ClangOptionDocs.td' + - 'clang/include/clang/Basic/DiagnosticDocs.td' clang-tools-extra: - 'clang-tools-extra/docs/**' lldb: |
