Skip to content

Commit

Permalink
Added Circle continuous integration server descriptor
Browse files Browse the repository at this point in the history
  • Loading branch information
pditommaso committed Dec 10, 2015
1 parent 1ebfcc7 commit 5e8a418
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 0 deletions.
8 changes: 8 additions & 0 deletions build/install-installbuilder-8.6.0.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
set -x
set -e
if [ ! -e $HOME/installbuilder-8.6.0 ]; then
cd $HOME
wget -q https://s3-eu-west-1.amazonaws.com/cbcrg-eu/tcoffee-ci/installbuilder-8.6.0.tar.gz
tar xf installbuilder-8.6.0.tar.gz
rm -rf installbuilder-8.6.0.tar.gz
fi
9 changes: 9 additions & 0 deletions build/install-ncbi-blast-2.2.28+.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
set -x
set -e
if [ ! -e $HOME/ncbi-blast-2.2.28+ ]; then
cd $HOME
wget -q ftp://ftp.ncbi.nlm.nih.gov/blast/executables/blast+/2.2.28/ncbi-blast-2.2.28+-x64-linux.tar.gz
tar xf ncbi-blast-2.2.28+-x64-linux.tar.gz
rm -rf ncbi-blast-2.2.28+-x64-linux.tar.gz
fi

21 changes: 21 additions & 0 deletions circle.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
dependencies:
cache_directories:
- /home/ubuntu/installbuilder-8.6.0
- /home/ubuntu/ncbi-blast-2.2.28+
pre:
- sudo apt-get update --fix-missing && sudo apt-get install -y antiword make gcc gfortran bc wget curl unzip perl-modules libnet-ssleay-perl libcrypt-ssleay-perl libssl-dev libexpat1 libexpat1-dev liblwp-protocol-https-perl
- sudo cpan -i Net::SSLeay
- sudo cpan -i XML::Simple
- sudo cpan -i SOAP::Lite
- bash build/install-installbuilder-8.6.0.sh
- ln -s $HOME/installbuilder-8.6.0 $HOME/installbuilder
- bash build/install-ncbi-blast-2.2.28+.sh
- ln -s $HOME/ncbi-blast-2.2.28+ $HOME/ncbi-blast
override:
- bash -x build/build.sh tcoffee :
environment:
OSNAME: linux
OSARCH: x64
BUILD_REPO: $HOME/repo
INSTALLER: $HOME/installbuilder/bin/builder
WORKSPACE: $HOME

0 comments on commit 5e8a418

Please sign in to comment.