https://github.com/jefferislab/NBLAST_figures
Raw File
Tip revision: 863e322524f24c30e85ff59cf9e3ec2f9793eab6 authored by Gregory Jefferis on 24 March 2016, 15:50:45 UTC
CMTK is required for some scripts
Tip revision: 863e322
.travis.yml
language: c
script: "./buildall.R"
before_install:
  - curl -OL http://raw.github.com/craigcitro/r-travis/master/scripts/travis-tool.sh
  - chmod 755 ./travis-tool.sh
  - "./travis-tool.sh bootstrap"
  - bash <(wget -q -O- http://neuro.debian.net/_files/neurodebian-travis.sh)
  - sudo apt-get install cmtk --no-install-recommends
install:
  - export PATH="$HOME/pandoc:$PATH"
  - mkdir $HOME/pandoc
  - curl -O https://s3.amazonaws.com/rstudio-buildtools/pandoc-1.12.3.zip
  - unzip -j pandoc-1.12.3.zip pandoc-1.12.3/linux/debian/x86_64/pandoc -d $HOME/pandoc
  - chmod +x $HOME/pandoc/pandoc
  - pandoc --version
  - "./travis-tool.sh r_binary_install rgl igraph devtools filehash RcppEigen plyr doMC
    ggplot2 knitr spam apcluster bigmemory ff yaml"
  - "./travis-tool.sh r_install mixOmics dendroextras nabor"
  - ./travis-tool.sh bioc_install Heatplus
  - "./travis-tool.sh install_github rstudio/rmarkdown jefferis/nat jefferislab/nat.nblast
    jefferislab/nat.templatebrains jefferislab/nat.flybrains jefferis/flycircuit"
  - sh -e /etc/init.d/xvfb start
notifications:
  email:
    on_success: change
    on_failure: change
env:
  global:
  - DISPLAY=:99.0
deploy:
  provider: releases
  api_key:
    secure: i5sIGknfmdHlPua7h3PRFloHb0sDGQR5Xb+OK8skJsxRqKV42xnGtOP3TCW09/wdFMOseAqkexzFUUB7VUJV8snpfQkMKanHeWBBDTaFSk85+3DOLahIA4QTTiZt4GJyRSrkQEemIbeqWRqood1awZq35ky0osPtxeGyRu0l/zY=
  file: "figures.zip"
  skip_cleanup: true
  on:
    tags: true
    all_branches: true
back to top