Sha256: 99416d779341747e07ef2032774ff25c0ea52eaf28c528385d887ab5266fe5a2

Contents?: true

Size: 813 Bytes

Versions: 3

Compression:

Stored size: 813 Bytes

Contents

language: ruby
rvm:
  - "2.2.10"
  - "2.3.7"
  - "2.4.4"
  - "2.5.1"
before_install:
  # Install MAFFT
  - mkdir dependencies
  - mkdir dependencies/mafft
  - curl -L --fail https://mafft.cbrc.jp/alignment/software/mafft-7.397-linux.tgz | tar -xzf - --strip-components=1 -C dependencies/mafft
  - MAFFT_DIR="$PWD/dependencies/mafft/mafftdir"
  - MAFFT_BINARIES="${MAFFT_DIR}/libexec"; export MAFFT_BINARIES;
  # BLAST
  - mkdir dependencies/blast
  - curl -L --fail https://ftp.ncbi.nlm.nih.gov/blast/executables/blast+/2.7.1/ncbi-blast-2.7.1+-x64-linux.tar.gz | tar -xzf - --strip-components=1 -C dependencies/blast
  - BLAST_BIN="$PWD/dependencies/blast/bin"
  - export PATH=${MAFFT_DIR}/bin:${BLAST_BIN}:$PATH
  # add GV as a dependency
  - echo  "gem 'genevalidator'" >> Gemfile
script: bundle exec rake test

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
genevalidatorapp-2.1.5 .travis.yml
genevalidatorapp-2.1.4 .travis.yml
genevalidatorapp-2.1.3 .travis.yml