Skip to content

Commit e8c26ad

Browse files
committed
[ fix ] remember to deploy installed libraries
1 parent 18b8e43 commit e8c26ad

2 files changed

Lines changed: 8 additions & 6 deletions

File tree

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ cache:
1717
directories:
1818
- $HOME/.cabal/
1919
- $HOME/.ghc/
20+
- $HOME/.agda/
2021

2122
install:
2223
- export PATH=$HOME/.cabal/bin:/opt/ghc/8.2.2/bin:/opt/cabal/2.0/bin:$PATH

travis/install_agda.sh

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,15 @@ if ! type "agda" > /dev/null || [ ! `agda -V | sed "s/[^2]*//"` = "$AGDA_VERSION
55
cabal update
66
cabal install alex happy cpphs --force-reinstalls
77
cabal install Agda-"$AGDA_VERSION" --force-reinstalls
8-
mkdir -p $HOME/.agda
9-
cp libraries-${VERSION} $HOME/.agda/
10-
cd $HOME/.agda/
11-
wget https://github.com/agda/agda-stdlib/archive/v0.17.tar.gz
12-
tar -xvzf v0.17.tar.gz
13-
cd -
148
fi
159

10+
mkdir -p $HOME/.agda
11+
cp libraries-${VERSION} $HOME/.agda/
12+
cd $HOME/.agda/
13+
wget https://github.com/agda/agda-stdlib/archive/v0.17.tar.gz
14+
tar -xvzf v0.17.tar.gz
15+
cd -
16+
1617
# mkdir -p $HOME/.agda
1718
# cp libraries-"$AGDA_VERSION" $HOME/.agda/
1819
# cd $HOME/.agda/

0 commit comments

Comments
 (0)