Open
Conversation
Should not actually build.
Collaborator
Author
|
http://readme.drone.io/0.5/ |
Collaborator
|
This dockerfile will build a container with julia, stinger-dynograph and stinger all installed FROM julia:0.5
RUN apt-get update && apt-get -y -qq install protobuf-compiler curl git libprotobuf-dev
RUN apt-get -y -qq install hdf5-tools
RUN apt-get install -y -qq build-essential
RUN apt-get install -y cmake
#Install StingerWrapper
RUN julia -e 'Pkg.add("BenchmarkTools"); Pkg.add("JLD"); Pkg.clone("https://github.com/rohitvarkey/StingerWrapper.jl.git")'
#Install dynograph
RUN cd ~/.julia/v0.5/StingerWrapper && mkdir deps && cd deps && git clone --recursive https://github.com/DynoGraph/stinger-dynograph.git
RUN cd ~/.julia/v0.5/StingerWrapper/deps/stinger-dynograph/lib/stinger && \
git remote add fork https://github.com/rohitvarkey/stinger.git && \
git fetch fork && git checkout stingerwrapper-bfs
RUN cd ~/.julia/v0.5/StingerWrapper/deps/stinger-dynograph && mkdir build && cd build && cmake .. && make dynograph
#Install stinger
RUN cd ~/.julia/v0.5/StingerWrapper/deps && git clone https://github.com/stingergraph/stinger.git
RUN cd ~/.julia/v0.5/StingerWrapper/deps/stinger && git fetch origin && git checkout -b dev origin/dev
RUN cd ~/.julia/v0.5/StingerWrapper/deps/stinger && mkdir build && cd build && cmake .. && make
ENV STINGER_LIB_PATH "/root/.julia/v0.5/StingerWrapper/deps/stinger/build/lib/"
#Run Julia
CMD julia |
Collaborator
Author
|
Great can you put the docker file on https://hub.docker.com/r/rohitvarkey/stingerwrapper_dyno_bench/? |
Collaborator
Author
|
Also can you use bindeps to do the install? https://github.com/JuliaLang/BinDeps.jl/blob/master/test/testscripts/simplebuild/build.jl |
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Should not actually build.
You need to write scripts for building stinger, and for running the tests.
Stuff on STDOUT/STDERR will be available in the logs.