Fixes travis config by moving out sdist testing script.
This commit is contained in:
parent
cbf1a9869c
commit
094eedc4c9
27
.travis.yml
27
.travis.yml
@ -34,26 +34,19 @@ before_install:
|
||||
# around some quirks in Travis's terminal implementation.
|
||||
script:
|
||||
- stack $ARGS --no-terminal --install-ghc install --test --fast
|
||||
- cat << EOF > test_sdist.sh
|
||||
export SRC_TGZ=$(cabal info . | awk '{print $2 ".tar.gz";exit}');
|
||||
cd $(stack path | grep dist-dir | awk '{print $2}');
|
||||
if [ -f "$SRC_TGZ" ]; then
|
||||
cabal install "$SRC_TGZ";
|
||||
else
|
||||
echo "expected '$SRC_TGZ' not found";
|
||||
exit 1;
|
||||
fi
|
||||
EOF
|
||||
|
||||
- stack sdist ringo-core
|
||||
- cd ringo-core;
|
||||
- sh ../test_sdist.sh
|
||||
- cd $(stack path | grep project-root | awk '{print $2}')
|
||||
- stack sdist ringo
|
||||
- stack $ARGS --no-terminal install cabal-install happy
|
||||
- cabal update
|
||||
- export PATH=$(stack $ARGS path | grep compiler-bin | awk '{print $2}'):$PATH
|
||||
- stack $ARGS sdist ringo-core
|
||||
- cd ringo-core
|
||||
- ../test_sdist
|
||||
- cd $(stack $ARGS path | grep project-root | awk '{print $2}')
|
||||
- stack $ARGS sdist ringo
|
||||
- cd ringo
|
||||
- sh ../test_sdist.sh
|
||||
- ../test_sdist
|
||||
|
||||
# Caching so the next build will be fast too.
|
||||
cache:
|
||||
directories:
|
||||
- $HOME/.stack
|
||||
- $HOME/.cabal
|
||||
|
10
test_sdist
Executable file
10
test_sdist
Executable file
@ -0,0 +1,10 @@
|
||||
#!/bin/sh
|
||||
|
||||
SRC_TGZ=$(cabal info . | awk '{print $2 ".tar.gz";exit}');
|
||||
cd $(stack $ARGS path | grep dist-dir | awk '{print $2}');
|
||||
if [ -f "$SRC_TGZ" ]; then
|
||||
cabal install "$SRC_TGZ";
|
||||
else
|
||||
echo "expected '$SRC_TGZ' not found";
|
||||
exit 1;
|
||||
fi
|
Loading…
Reference in New Issue
Block a user