diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..01a20fb --- /dev/null +++ b/.travis.yml @@ -0,0 +1,9 @@ +language: c + +env: + - FISH_PPA=nightly-master + +before_install: + - script/bootstrap.sh + +script: fish ./spec/spec.fish diff --git a/script/bootstrap.sh b/script/bootstrap.sh new file mode 100755 index 0000000..1cfd522 --- /dev/null +++ b/script/bootstrap.sh @@ -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