Skip to content

Commit 4371681

Browse files
committed
Bump versions
1 parent f9a89f0 commit 4371681

File tree

5 files changed

+9
-5
lines changed

5 files changed

+9
-5
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,10 @@ jobs:
1717
export NXF_VER=${{ matrix.nxf_ver }}
1818
wget -qO- get.nextflow.io | bash
1919
sudo mv nextflow /usr/local/bin/
20+
- name: Download and tag image
21+
run: |
22+
docker pull nfcore/ampliseq:dev
23+
docker tag nfcore/ampliseq:dev nfcore/ampliseq:1.1.1
2024
- name: Run test
2125
run: |
2226
nextflow run ${GITHUB_WORKSPACE} -profile test,docker

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ before_install:
1212
- '[ $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
1313
- docker pull nfcore/ampliseq:dev
1414
# Fake the tag locally so that the pipeline runs properly
15-
- docker tag nfcore/ampliseq:dev nfcore/ampliseq:dev
15+
- docker tag nfcore/ampliseq:dev nfcore/ampliseq:1.1.1
1616

1717
install:
1818
# Install Nextflow

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ FROM nfcore/base:1.7
22
LABEL description="Docker image containing all requirements for nf-core/ampliseq pipeline"
33
COPY environment.yml /
44
RUN conda env create -f /environment.yml && conda clean -a
5-
ENV PATH /opt/conda/envs/nf-core-ampliseq-dev/bin:$PATH
5+
ENV PATH /opt/conda/envs/nf-core-ampliseq-1.1.1/bin:$PATH
66
## Required to build the container properly
77
RUN mkdir -p /root/.config/matplotlib
88
RUN echo "backend : Agg" > /root/.config/matplotlib/matplotlibrc

environment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: nf-core-ampliseq-dev
1+
name: nf-core-ampliseq-1.1.1
22
channels:
33
- qiime2
44
- qiime2/label/r2019.10

nextflow.config

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ includeConfig 'conf/base.config'
6666

6767
// Container slug. Stable releases should specify release tag!
6868
// Developmental code should specify :dev
69-
process.container = 'nfcore/ampliseq:dev'
69+
process.container = 'nfcore/ampliseq:1.1.1'
7070

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

0 commit comments

Comments
 (0)