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 c58005b
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 0 deletions.
7 changes: 7 additions & 0 deletions build/install-instalbuilder-8.6.0.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
set -x
set -e
if [ ! -e installbuilder-8.6.0 ]; then
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
8 changes: 8 additions & 0 deletions build/install-ncbi-blast-2.2.28+.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
set -x
set -e
if [ ! -e ncbi-blast-2.2.28+ ]; then
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

18 changes: 18 additions & 0 deletions circle.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
dependencies:
cache_directories:
- installbuilder-8.6.0
- ncbi-blast-2.2.28+
pre:
- sudo apt-get -y update; sudo apt-get install -y antiword gcc gfortran apt-get libexpat1-dev
- bash build/install-installbuilder-8.6.0.sh
- ln -s installbuilder-8.6.0 installbuilder
- bash build/install-ncbi-blast-2.2.28+.sh
- ln -s ncbi-blast-2.2.28+ 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 c58005b

Please sign in to comment.