Skip to content

Commit 99e7df7

Browse files
committed
Use precompiled binaries.
1 parent f67933f commit 99e7df7

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

.travis.yml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,15 @@
11
language: node_js
22
node_js:
33
- "0.10"
4+
env:
5+
- PATH=$HOME/bin:$PATH purescript_datadir=$HOME/.local/share/purescript
6+
before_install:
7+
- mkdir -p $HOME/bin
8+
- mkdir -p $HOME/.local/share/purescript/prelude
49
install:
5-
- "sudo apt-get install cabal-install"
6-
- "cabal update"
7-
- "cabal install Cabal cabal-install"
8-
- "export PATH=~/.cabal/bin:$PATH"
9-
- "cabal install purescript --force-reinstalls"
10+
- wget -O $HOME/bin/psc https://github.com/purescript/purescript/releases/download/0.5.6.2/psc
11+
- chmod a+x $HOME/bin/psc
12+
- wget -O $purescript_datadir/prelude/prelude.purs https://github.com/purescript/purescript/releases/download/0.5.6.2/prelude.purs
1013
- "npm install bower grunt-cli -g"
1114
- "npm install"
1215
- "bower install"

0 commit comments

Comments
 (0)