Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,11 @@
name: Docs

on:
pull_request:
paths:
- '.github/workflows/docs.yml'
- 'cpp/apidoc/**'
- 'docs/**'
push:

permissions:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/docs_light.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,15 @@ on:
pull_request:
paths:
- '.dockerignore'
- 'docs/**'
- '.github/workflows/docs_light.yml'
- 'ci/docker/conda.dockerfile'
- 'ci/docker/conda-cpp.dockerfile'
- 'ci/docker/conda-python.dockerfile'
- 'ci/scripts/cpp_build.sh'
- 'ci/scripts/python_build.sh'
- 'compose.yaml'
- 'cpp/apidoc/**'
- 'docs/**'

permissions:
contents: read
Expand Down
3 changes: 2 additions & 1 deletion cpp/apidoc/Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -1096,7 +1096,8 @@ EXCLUDE_PATTERNS = *-test.cc \
*_generated.h \
*-benchmark.cc \
*_codegen.py \
*internal*
*internal* \
*.md

# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names
# (namespaces, classes, functions, etc.) that should be excluded from the
Expand Down
2 changes: 1 addition & 1 deletion cpp/src/arrow/flight/sql/odbc/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ After the build succeeds, the ODBC DLL will be located in

2. Register your ODBC DLL:

Need to replace <path\to\repo> with actual path to repository in the commands.
Need to replace `<path\to\repo>` with actual path to repository in the commands.
1. `cd to repo.`
2. `cd <path\to\repo>`
3. Run script to register your ODBC DLL as Apache Arrow Flight SQL ODBC Driver
Expand Down
Loading