diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..f65483a --- /dev/null +++ b/.travis.yml @@ -0,0 +1,18 @@ +dist: trusty +sudo: required + +services: + - docker + +language: java + +jdk: + - oraclejdk8 + +before_script: + - docker pull guigolab/chip-nf@sha256:f912436e8791a9d1f9cadf76099f760151435a43d7873712ee692cb2b0f8947e + - curl -fsSL get.nextflow.io | bash && mv nextflow $HOME/bin + +script: + - ./ci run -profile circleci && ./ci validate + \ No newline at end of file diff --git a/README.adoc b/README.adoc index 6572fa0..09610d9 100644 --- a/README.adoc +++ b/README.adoc @@ -3,11 +3,11 @@ :nextflow-quickstart: http://www.nextflow.io/docs/latest/getstarted.html#get-started :macs2-outfiles: https://github.com/taoliu/MACS#output-files :pvalue: pass:q[[red]#___-log_10(P)___#] -:circle-shield: https://circleci.com/gh/guigolab/chip-nf.svg?style=shield :nf-shield: https://img.shields.io/badge/nextflow-%E2%89%A50.23.1-blue.svg +:travis-badge: https://travis-ci.org/guigolab/chip-nf.svg?branch=master image:{nf-shield}["Nextflow", link="https://nextflow.io", window="_blank"] -image:{circle-shield}["CircleCI status", link="https://circleci.com/gh/guigolab/chip-nf", window="_blank"] +image:{travis-badge}["Build Status", link="https://travis-ci.org/guigolab/chip-nf"] A {nextflow}[Nextflow^] pipeline for processing ChIP-seq data. diff --git a/circle.yml b/circle.yml deleted file mode 100644 index fe6f598..0000000 --- a/circle.yml +++ /dev/null @@ -1,15 +0,0 @@ -machine: - java: - version: oraclejdk8 - services: - - docker - pre: - - curl -sSL https://s3.amazonaws.com/circle-downloads/install-circleci-docker.sh | bash -s -- 1.10.0 - -test: - pre: - - docker pull guigolab/chip-nf@sha256:f912436e8791a9d1f9cadf76099f760151435a43d7873712ee692cb2b0f8947e - - curl -fsSL get.nextflow.io | bash && mv nextflow $HOME/bin - override: - - ./ci run -profile circleci && ./ci validate - \ No newline at end of file