mirror of
https://github.com/oh-my-fish/oh-my-fish
synced 2024-11-03 15:40:32 +00:00
Merge pull request #302 from bucaran/travis
Add travis support via .travis.yml and bash bootstrap script.
This commit is contained in:
commit
1f9a51c3f6
9
.travis.yml
Normal file
9
.travis.yml
Normal file
@ -0,0 +1,9 @@
|
||||
language: c
|
||||
|
||||
env:
|
||||
- FISH_PPA=nightly-master
|
||||
|
||||
before_install:
|
||||
- script/bootstrap.sh
|
||||
|
||||
script: fish ./spec/spec.fish
|
6
script/bootstrap.sh
Executable file
6
script/bootstrap.sh
Executable file
@ -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…
Reference in New Issue
Block a user