-
Notifications
You must be signed in to change notification settings - Fork 164
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
37 changed files
with
765 additions
and
423 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
VERSION_MAJOR 1 | ||
VERSION_MINOR 0 | ||
VERSION_MINOR 1 | ||
VERSION_PATCH 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,15 @@ | ||
# Steps to prepare a release of Salmon | ||
# Steps to prepare a release of salmon | ||
----- | ||
|
||
1. Tag corresponding commit of RapMap so that it can be stably pulled in for source builds. | ||
2. Alter `fetchRapMap.sh` to fetch the corresponding tagged version (and update the sha256 sum). | ||
1. Tag corresponding commit of pufferfish so that it can be stably pulled in for source builds. | ||
2. Alter `fetchPufferfish.sh` to fetch the corresponding tagged version (and update the sha256 sum). | ||
3. Bump salmon version in `include/SalmonConfig.hpp`, then rebuild and run the `bump_version.sh` script. | ||
4. Ensure that everything builds cleanly on Linux (taken care of by CI) and OSX. | ||
5. Merge the develop branch changes into master. | ||
6. Tag the Salmon release with a new version number. | ||
6. Tag the salmon release with a new version number. | ||
7. Update the docker tag and build an image for docker hub. | ||
8. Bump the Bioconda version and build a new Bioconda release. | ||
9. Add release notes for the tagged master version. | ||
10. Upload the pre-compiled linux binary (from the CI server) to GitHub. | ||
11. (not technically part of release) Reset the relevant changes (steps 1,2) on the develop branch so they now point to a non-tagged RapMap. | ||
11. Place a new version file on the website and update the old one. | ||
12. (not technically part of release) Reset the relevant changes (steps 1,2) on the develop branch so they now point to a non-tagged RapMap. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,9 +4,9 @@ | |
FROM ubuntu:18.04 | ||
MAINTAINER [email protected] | ||
|
||
ENV PACKAGES git gcc make g++ cmake libboost-all-dev liblzma-dev libbz2-dev \ | ||
ca-certificates zlib1g-dev curl unzip autoconf | ||
ENV SALMON_VERSION 1.0.0 | ||
ENV PACKAGES git gcc make g++ libboost-all-dev liblzma-dev libbz2-dev \ | ||
ca-certificates zlib1g-dev libcurl4-openssl-dev curl unzip autoconf apt-transport-https ca-certificates gnupg software-properties-common wget | ||
ENV SALMON_VERSION 1.1.0 | ||
|
||
# salmon binary will be installed in /home/salmon/bin/salmon | ||
|
||
|
@@ -15,9 +15,22 @@ ENV SALMON_VERSION 1.0.0 | |
WORKDIR /home | ||
|
||
RUN apt-get update && \ | ||
apt remove -y libcurl4 && \ | ||
apt-get install -y --no-install-recommends ${PACKAGES} && \ | ||
apt-get clean | ||
|
||
RUN wget -O - https://apt.kitware.com/keys/kitware-archive-latest.asc 2>/dev/null | apt-key add - | ||
|
||
RUN apt-add-repository 'deb https://apt.kitware.com/ubuntu/ bionic main' | ||
|
||
RUN apt-get update | ||
|
||
RUN apt-key --keyring /etc/apt/trusted.gpg del C1F34CDD40CD72DA | ||
|
||
RUN apt-get install kitware-archive-keyring | ||
|
||
RUN apt-get install -y cmake | ||
|
||
RUN curl -k -L https://github.com/COMBINE-lab/salmon/archive/v${SALMON_VERSION}.tar.gz -o salmon-v${SALMON_VERSION}.tar.gz && \ | ||
tar xzf salmon-v${SALMON_VERSION}.tar.gz && \ | ||
cd salmon-${SALMON_VERSION} && \ | ||
|
@@ -34,3 +47,7 @@ RUN curl -k -L https://github.com/COMBINE-lab/salmon/archive/v${SALMON_VERSION}. | |
# cmake .. -DCMAKE_INSTALL_PREFIX=/usr/local && make && make install | ||
|
||
ENV PATH /home/salmon-${SALMON_VERSION}/bin:${PATH} | ||
ENV LD_LIBRARY_PATH "/usr/local/lib:${LD_LIBRARY_PATH}" | ||
|
||
RUN echo "export PATH=$PATH" > /etc/environment | ||
RUN echo "export LD_LIBRARY_PATH=$LD_LIBRARY_PATH" > /etc/environment |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
#! /bin/bash | ||
SALMON_VERSION=1.0.0 | ||
SALMON_VERSION=1.1.0 | ||
docker build --no-cache -t combinelab/salmon:${SALMON_VERSION} -t combinelab/salmon:latest . |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.