Skip to content

Commit d66e297

Browse files
committed
remove ccache support, which doesnt work
1 parent 1226bbf commit d66e297

File tree

2 files changed

+0
-14
lines changed

2 files changed

+0
-14
lines changed

.travis.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
11
language: generic
2-
cache:
3-
directories:
4-
- $HOME/.ccache
52

63
os:
74
- linux
@@ -17,8 +14,6 @@ install:
1714
- conda update -q conda
1815
- conda info -a
1916
- conda install conda-build anaconda-client constructor
20-
- conda install -c conda-forge ccache
21-
- ccache -s
2217
- conda/template.py conda/meta.tpl $VERSION > conda/meta.yaml
2318
- conda build -c terhorst -c conda-forge -c bioconda conda
2419
- conda install --use-local -c terhorst -c bioconda -c conda-forge smcpp

conda/build.sh

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,2 @@
11
#!/bin/bash -ex
2-
mkdir -p $PREFIX/.bin
3-
for c in gcc g++; do ln -s $(which ccache) $PREFIX/.bin/$c; done
4-
export PATH=$PREFIX/.bin:$PATH
5-
export CCACHE_BASEDIR=$PREFIX CCACHE_LOGFILE=/tmp/cache.debug CCACHE_COMPILERCHECK=content
6-
echo $(which gcc)
7-
ccache -s
82
python setup.py install --single-version-externally-managed --record=/dev/null
9-
ccache -s
10-
rm -rf $PREFIX/.bin
11-
cat /tmp/cache.debug

0 commit comments

Comments
 (0)