Merge pull request #302 from bucaran/travis

Add travis support via .travis.yml and bash bootstrap script.
pull/2/head
Bruno 10 years ago
commit 1f9a51c3f6

@ -0,0 +1,9 @@
language: c
env:
- FISH_PPA=nightly-master
before_install:
- script/bootstrap.sh
script: fish ./spec/spec.fish

@ -0,0 +1,6 @@
#!/usr/bin/env bash
ppa=ppa:fish-shell/${FISH_PPA:-nightly-master}
sudo add-apt-repository -y $ppa
sudo apt-get update
sudo apt-get -y install fish
curl -L https://github.com/bpinto/oh-my-fish/raw/master/tools/install.fish | FORK=bucaran fish
Loading…
Cancel
Save