Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create .drone.yml template #16

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open

Conversation

jpfairbanks
Copy link
Collaborator

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.

Should not actually build.
@jpfairbanks
Copy link
Collaborator Author

http://readme.drone.io/0.5/
install the drone cli to run locally.

@rohitvarkey
Copy link
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

@jpfairbanks
Copy link
Collaborator Author

Great can you put the docker file on https://hub.docker.com/r/rohitvarkey/stingerwrapper_dyno_bench/?

@jpfairbanks
Copy link
Collaborator Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants