Skip to content

Commit 1369e12

Browse files
chris-b1jorisvandenbossche
authored andcommitted
BLD/CI: cython cache pxd files (#14363)
1 parent d98e982 commit 1369e12

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

ci/prep_cython_cache.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
ls "$HOME/.cache/"
44

55
PYX_CACHE_DIR="$HOME/.cache/pyxfiles"
6-
pyx_file_list=`find ${TRAVIS_BUILD_DIR} -name "*.pyx"`
7-
pyx_cache_file_list=`find ${PYX_CACHE_DIR} -name "*.pyx"`
6+
pyx_file_list=`find ${TRAVIS_BUILD_DIR} -name "*.pyx" -o -name "*.pxd"`
7+
pyx_cache_file_list=`find ${PYX_CACHE_DIR} -name "*.pyx" -o -name "*.pxd"`
88

99
CACHE_File="$HOME/.cache/cython_files.tar"
1010

ci/submit_cython_cache.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
CACHE_File="$HOME/.cache/cython_files.tar"
44
PYX_CACHE_DIR="$HOME/.cache/pyxfiles"
5-
pyx_file_list=`find ${TRAVIS_BUILD_DIR} -name "*.pyx"`
5+
pyx_file_list=`find ${TRAVIS_BUILD_DIR} -name "*.pyx" -o -name "*.pxd"`
66

77
rm -rf $CACHE_File
88
rm -rf $PYX_CACHE_DIR

0 commit comments

Comments
 (0)