Skip to content

Commit cf66311

Browse files
committed
fetch latest PS binary from Github
1 parent 5f89705 commit cf66311

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

.travis.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,19 @@
11
language: node_js
22
dist: trusty
33
sudo: required
4-
node_js: 8
4+
node_js: stable
5+
env:
6+
- PATH=$HOME/purescript:$PATH
57
install:
8+
- TAG=$(wget -q -O - https://github.com/purescript/purescript/releases/latest --server-response --max-redirect 0 2>&1 | sed -n -e 's/.*Location:.*tag\///p')
9+
- wget -O $HOME/purescript.tar.gz https://github.com/purescript/purescript/releases/download/$TAG/linux64.tar.gz
10+
- tar -xvf $HOME/purescript.tar.gz -C $HOME/
11+
- chmod a+x $HOME/purescript
612
- npm install -g bower
713
- npm install
814
script:
915
- bower install --production
1016
- npm run -s build
11-
- bower install
1217
after_success:
1318
- >-
1419
test $TRAVIS_TAG &&

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
"eslint": "^3.17.1",
99
"pulp": "^11.0.0",
1010
"purescript-psa": "^0.5.0",
11-
"purescript": "^0.12.0",
1211
"rimraf": "^2.5.4"
1312
}
1413
}

0 commit comments

Comments
 (0)