Created
June 14, 2017 10:58
-
-
Save njlr/bae43b36a0e3bc1e13398f3c87ce286c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
dist: trusty | |
language: generic | |
before_install: | |
# Install Linuxbrew | |
- git clone https://github.com/Linuxbrew/brew.git $HOME/.linuxbrew | |
- PATH="$HOME/.linuxbrew/bin:$PATH" | |
- echo 'export PATH="$HOME/.linuxbrew/bin:$PATH"' >>~/.bash_profile | |
- export MANPATH="$(brew --prefix)/share/man:$MANPATH" | |
- export INFOPATH="$(brew --prefix)/share/info:$INFOPATH" | |
- brew --version | |
# Install Buck | |
- brew tap facebook/fb | |
- brew install buck | |
- buck --version | |
script: | |
- buck build :hello |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment