Skip to content

Commit

Permalink
add instruction on how to run rake package
Browse files Browse the repository at this point in the history
  • Loading branch information
IsmailM committed Dec 28, 2020
1 parent 35787b9 commit c75e9d9
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,23 @@ end
# rake package
# - Just create directories and don't compress
# rake package DIR_ONLY=1

# ## TO RUN with DOCKER
# Start docker, mounting an empty folder called `output`:
#
# `docker run --rm -it -v $PWD/output:/gv ruby:2.2.10 /bin/bash`
#
# Then inside the shell:
#
# ```
# apt update && apt install unzip && gem install bundler -v 1.17.3
# cd /gv
# git clone https://github.com/wurmlab/genevalidator
# cd genevalidator
# bundle install
# rake package
# ```

namespace :package do
PLATFORMS.each do |platform|
task platform => [
Expand Down

0 comments on commit c75e9d9

Please sign in to comment.