Skip to content

Commit

Permalink
Bump versions
Browse files Browse the repository at this point in the history
  • Loading branch information
apeltzer committed Dec 9, 2019
1 parent f9a89f0 commit 4371681
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ jobs:
export NXF_VER=${{ matrix.nxf_ver }}
wget -qO- get.nextflow.io | bash
sudo mv nextflow /usr/local/bin/
- name: Download and tag image
run: |
docker pull nfcore/ampliseq:dev
docker tag nfcore/ampliseq:dev nfcore/ampliseq:1.1.1
- name: Run test
run: |
nextflow run ${GITHUB_WORKSPACE} -profile test,docker
Expand Down
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ before_install:
- '[ $TRAVIS_PULL_REQUEST = "false" ] || [ $TRAVIS_BRANCH != "master" ] || ([ $TRAVIS_PULL_REQUEST_SLUG = $TRAVIS_REPO_SLUG ] && ([ $TRAVIS_PULL_REQUEST_BRANCH = "dev" ] || [ $TRAVIS_PULL_REQUEST_BRANCH = "patch" ]))' # Pull the docker image first so the test doesn't wait for this
- docker pull nfcore/ampliseq:dev
# Fake the tag locally so that the pipeline runs properly
- docker tag nfcore/ampliseq:dev nfcore/ampliseq:dev
- docker tag nfcore/ampliseq:dev nfcore/ampliseq:1.1.1

install:
# Install Nextflow
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM nfcore/base:1.7
LABEL description="Docker image containing all requirements for nf-core/ampliseq pipeline"
COPY environment.yml /
RUN conda env create -f /environment.yml && conda clean -a
ENV PATH /opt/conda/envs/nf-core-ampliseq-dev/bin:$PATH
ENV PATH /opt/conda/envs/nf-core-ampliseq-1.1.1/bin:$PATH
## Required to build the container properly
RUN mkdir -p /root/.config/matplotlib
RUN echo "backend : Agg" > /root/.config/matplotlib/matplotlibrc
Expand Down
2 changes: 1 addition & 1 deletion environment.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: nf-core-ampliseq-dev
name: nf-core-ampliseq-1.1.1
channels:
- qiime2
- qiime2/label/r2019.10
Expand Down
4 changes: 2 additions & 2 deletions nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ includeConfig 'conf/base.config'

// Container slug. Stable releases should specify release tag!
// Developmental code should specify :dev
process.container = 'nfcore/ampliseq:dev'
process.container = 'nfcore/ampliseq:1.1.1'

// Load base.config by default for all pipelines
includeConfig 'conf/base.config'
Expand Down Expand Up @@ -125,7 +125,7 @@ manifest {
homePage = 'https://github.com/nf-core/ampliseq'
description = '16S rRNA amplicon sequencing analysis workflow using QIIME2'
homePage = 'https://github.com/nf-core/ampliseq'
version = 'dev'
version = '1.1.1'
mainScript = 'main.nf'
nextflowVersion = '>=19.10.0'
}
Expand Down

0 comments on commit 4371681

Please sign in to comment.