Skip to content

Commit abde663

Browse files
wesmkou
authored andcommitted
ARROW-4078: [CI] Detect changes in docs/ directory and build the Linux Python entry if so
Author: Wes McKinney <wesm+git@apache.org> Closes apache#3266 from wesm/ARROW-4078 and squashes the following commits: 395c496 <Wes McKinney> Detect changes in docs/ directory and build the Linux Python entry if so
1 parent 9c76600 commit abde663

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ matrix:
106106
# TODO(wesm): Run the benchmarks outside of Travis
107107
# - ARROW_TRAVIS_PYTHON_BENCHMARKS=1
108108
before_script:
109-
- if [ $ARROW_CI_PYTHON_AFFECTED != "1" ]; then exit; fi
109+
- if [ $ARROW_CI_PYTHON_AFFECTED != "1" ] && [ $ARROW_CI_DOCS_AFFECTED != "1" ]; then exit; fi
110110
- $TRAVIS_BUILD_DIR/ci/travis_install_linux.sh
111111
- $TRAVIS_BUILD_DIR/ci/travis_install_clang_tools.sh
112112
- $TRAVIS_BUILD_DIR/ci/travis_install_toolchain.sh

ci/detect-changes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626

2727
perr = functools.partial(print, file=sys.stderr)
2828

29-
LANGUAGE_TOPICS = ['c_glib', 'cpp', 'go', 'java', 'js', 'python',
29+
LANGUAGE_TOPICS = ['c_glib', 'cpp', 'docs', 'go', 'java', 'js', 'python',
3030
'r', 'ruby', 'rust']
3131

3232
ALL_TOPICS = LANGUAGE_TOPICS + ['integration', 'site', 'dev']

0 commit comments

Comments
 (0)