Merge pull request #473 from ohAitch/use-deb

[CI] use urbit_amd64.deb from urbit/urbit release
This commit is contained in:
Ted Blackman 2017-12-19 16:43:37 -08:00 committed by GitHub
commit 4ee42ce6c2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 6 additions and 8 deletions

View File

@ -4,11 +4,9 @@ node_js:
before_install:
- cd .travis # keep main directory clear
- >
wget $(cat ./pin-urbit-release.url)/urbit -O ./urbit &&
chmod +x ./urbit;
echo "FIXME downloaded raw urbit binary releaseinstead of .deb";
echo "FIXME used full pinned url instead of tag name"
- wget -i pin-urbit-release.url -O ./urbit.deb
- sudo apt install ./urbit.deb
before_script: bash get-or-build-pill.sh

View File

@ -45,7 +45,7 @@ do
require! <[ stream-snitch once recursive-copy wait-on ]>
pty = require \pty.js
urbit = pty.spawn './urbit' <[-FI zod prev/zod]>
urbit = pty.spawn 'urbit' <[-FI zod prev/zod]>
.on \data -> process.stdout.write it
on-next = (re,cb)->

View File

@ -1 +1 @@
https://github.com/urbit/urbit/releases/download/redefault-0.5.1
https://github.com/urbit/urbit/releases/download/v0.5.1/urbit_0.5-1_amd64.deb

View File

@ -3,7 +3,7 @@ pty = require \pty.js
urbit =
# TODO abort on failure
pty.spawn './urbit' <[-B urbit.pill -A .. -cFI zod zod]>
pty.spawn 'urbit' <[-B urbit.pill -A .. -cFI zod zod]>
.on \data -> process.stdout.write it
urbit.on \exit (code)->