Skip to content
This repository has been archived by the owner on Aug 29, 2023. It is now read-only.

Commit

Permalink
Merge pull request #6 from guigolab/ihec/pr
Browse files Browse the repository at this point in the history
Updates for release 1.1.0
  • Loading branch information
sitag authored Mar 12, 2021
2 parents e7bb0fa + e43cbca commit 64ab3d0
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 7 deletions.
1 change: 0 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ on:
jobs:
build:

if: "!contains(github.event.head_commit.message, '[ci skip]')"
runs-on: ubuntu-latest

strategy:
Expand Down
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# GRAPE-nf Changelog

## Version 1.1.0

- Fix issue with `sambamba` repo checkout in Dockerfile
- Change quantification process view - #59
- Add output files section in readme - #58
- Switch CI to GitHub Actions


## Version 1.0.0

First IHEC release
Expand Down
5 changes: 2 additions & 3 deletions docker/tool/sambamba/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,8 @@ RUN apk --no-cache add -X http://dl-cdn.alpinelinux.org/alpine/edge/main \

ARG REVISION=v0.7.1

RUN git clone --recursive https://github.com/biod/sambamba.git && \
cd sambamba && git checkout $REVISION && \
make static
RUN git clone --recursive https://github.com/biod/sambamba.git --branch $REVISION \
&& cd sambamba && make static

FROM grapenf/base

Expand Down
5 changes: 2 additions & 3 deletions docker/tool/sambamba/Dockerfile.compile
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,8 @@ ENV \

ARG REVISION=v0.7.1

RUN git clone --recursive https://github.com/biod/sambamba.git && \
cd sambamba && git checkout $REVISION && \
make
RUN git clone --recursive https://github.com/biod/sambamba.git --branch $REVISION \
&& cd sambamba && make

FROM grapenf/base

Expand Down

0 comments on commit 64ab3d0

Please sign in to comment.