mirror of
https://github.com/junegunn/fzf
synced 2024-11-01 03:20:42 +00:00
29 lines
851 B
YAML
29 lines
851 B
YAML
language: ruby
|
|
rvm:
|
|
- 2.2.0
|
|
|
|
install:
|
|
- sudo apt-get update
|
|
- sudo apt-get install -y libncurses-dev lib32ncurses5-dev
|
|
- sudo add-apt-repository -y ppa:pi-rho/dev
|
|
- sudo apt-add-repository -y ppa:fish-shell/release-2
|
|
- sudo apt-get update
|
|
- sudo apt-get install -y tmux=1.9a-1~ppa1~p
|
|
- sudo apt-get install -y zsh fish
|
|
|
|
script: |
|
|
export GOROOT=~/go1.4
|
|
export GOPATH=~/go
|
|
export FZF_BASE=~/go/src/github.com/junegunn/fzf
|
|
|
|
mkdir -p ~/go/src/github.com/junegunn
|
|
ln -s $(pwd) $FZF_BASE
|
|
|
|
curl https://storage.googleapis.com/golang/go1.4.1.linux-amd64.tar.gz | tar -xz
|
|
mv go $GOROOT
|
|
|
|
cd $FZF_BASE/src && make test fzf/fzf-linux_amd64 install &&
|
|
cd $FZF_BASE/bin && ln -sf fzf-linux_amd64 fzf-$(./fzf --version)-linux_amd64 &&
|
|
cd $FZF_BASE && yes | ./install &&
|
|
tmux new "ruby test/test_go.rb > out && touch ok" && cat out && [ -e ok ]
|