summaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
authorJunegunn Choi <junegunn.c@gmail.com>2015-01-17 10:51:39 +0900
committerJunegunn Choi <junegunn.c@gmail.com>2015-01-17 10:51:39 +0900
commit1990f3c992b7825dce6c959e2b4f26429c148cc9 (patch)
tree213f74544ce2202dbfcfe4f25879b2d6358d5948 /.travis.yml
parentc0b432f7b4086c415d798d23970a3f5a4471af32 (diff)
Do not build i386 binary on Travis CI to speed up the process
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml4
1 files changed, 1 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml
index 9943ca61..d4196e1f 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -16,10 +16,8 @@ script: |
curl https://storage.googleapis.com/golang/go1.4.1.linux-amd64.tar.gz | tar -xz
mv go $GOROOT
- cd $GOROOT/src
- GOARCH=386 ./make.bash
- cd $FZF_BASE/src && make install &&
+ 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 "rake test > out && touch ok" && cat out && [ -e ok ]