Skip to content

Commit cafb835

Browse files
committed
BLD: fix caching 4
1 parent 36435bf commit cafb835

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

ci/submit_ccache.sh

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,19 +13,17 @@ fi
1313

1414
if [ "$IRON_TOKEN" ]; then
1515

16-
cd $HOME
17-
rm -rf ccache.7z
16+
rm -rf $HOME/ccache.7z
1817

19-
tar cf - .ccache \
18+
tar cf - $HOME/.ccache \
2019
"$TRAVIS_BUILD_DIR"/pandas/{index,algos,lib,tslib,parser,hashtable}.c \
2120
"$TRAVIS_BUILD_DIR"/pandas/src/{sparse,testing}.c \
2221
"$TRAVIS_BUILD_DIR"/pandas/msgpack.cpp \
23-
| 7za a -si ccache.7z
22+
| 7za a -si $HOME/ccache.7z
2423

25-
split -b 500000 -d ccache.7z ccache.
24+
split -b 500000 -d $HOME/ccache.7z ccache.
2625

2726
python ci/ironcache/put.py
28-
cd $home_dir
2927
fi;
3028

3129
exit 0

0 commit comments

Comments
 (0)