forked from ahmadia/homebrew-science
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.travis.yml
76 lines (71 loc) · 1.81 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
language: ruby
os: linux
rvm: 2.0.0
sudo: required
dist: trusty
addons:
apt_packages:
- csh
- cython
- python-astropy
- python-nose
- python-pip
- python-sphinx
before_install:
- sudo apt-get -qq update
- sudo apt-get install -y libxml-parser-perl libxml-sax-perl
- DEBIAN_FRONTEND=noninteractive sudo apt-get autoremove -y --purge
libblas-dev
libbz2-dev
libfreetype6-dev
libgdbm-dev
libicu-dev
libidn11-dev
libjasper-dev
libjbig-dev
libkrb5-dev
liblzma-dev
libncurses5-dev
libpcre3-dev
libtinfo-dev
libwebp-dev
libwmf-dev
libx11-dev
libxml2-dev
llvm-3.4
mysql-common
zlib1g-dev
- git config --global user.name "Travis CI"
- git config --global user.email "[email protected]"
- export TRAVIS_COMMIT="$(git rev-parse --verify -q HEAD)"
- if [ -f ".git/shallow" ]; then
travis_retry git fetch --unshallow;
fi
- HOME=/home/linuxbrew
- sudo mkdir $HOME
- sudo chown "$USER:" $HOME
- LINUXBREW=$HOME/.linuxbrew
- git clone --depth=1 https://github.com/Linuxbrew/brew.git "$LINUXBREW"
- export PATH="$LINUXBREW/bin:$LINUXBREW/sbin:$PATH"
- HOMEBREW_TAP_DIR="$(brew --repo "$TRAVIS_REPO_SLUG")"
- rm -rf "$HOMEBREW_TAP_DIR"
- mkdir -p "$(dirname "$HOMEBREW_TAP_DIR")"
- ln -s "$PWD" "$HOMEBREW_TAP_DIR"
# Fix error: Incorrect file permissions (664)
- chmod 0644 *.rb
- umask 022
- export HOMEBREW_DEVELOPER=1
- export HOMEBREW_NO_AUTO_UPDATE=1
- export HOMEBREW_VERBOSE=1 HOMEBREW_VERBOSE_USING_DOTS=1
- env | grep TRAVIS | tee /tmp/travis.env
- ulimit -n 1024
- brew tap linuxbrew/xorg
install:
- pip install pysam
script:
- brew tap linuxbrew/xorg
- brew test-bot
notifications:
email:
on_success: never
on_failure: always