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

Use Julia 1.0.2 #4

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 4 additions & 6 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -82,9 +82,9 @@ COPY Make.user /home/oscar/Make.user

ENV MARCH x86-64

RUN wget https://github.com/JuliaLang/julia/releases/download/v0.6.3/julia-0.6.3-full.tar.gz \
&& tar xf julia-0.6.3-full.tar.gz \
&& rm julia-0.6.3-full.tar.gz \
RUN wget https://github.com/JuliaLang/julia/releases/download/v1.0.2/julia-1.0.2-full.tar.gz \
&& tar xf julia-1.0.2-full.tar.gz \
&& rm julia-1.0.2-full.tar.gz \
&& cd julia \
&& export MARCH=x86-64 \
&& cp ../Make.user . \
Expand Down Expand Up @@ -150,16 +150,14 @@ COPY install_polymake.jl /home/oscar/install_polymake.jl
RUN julia install_polymake.jl

COPY install_singular.jl /home/oscar/install_singular.jl
RUN sudo julia install_singular.jl
RUN julia install_singular.jl

COPY install_oscar.jl /home/oscar/install_oscar.jl
RUN julia install_oscar.jl

COPY install_ijulia.jl /home/oscar/install_ijulia.jl
RUN julia install_ijulia.jl

RUN touch /home/oscar/.julia/v0.6/Cxx/src/Cxx.jl

RUN echo "c.NotebookApp.token = ''" > /home/oscar/.jupyter/jupyter_notebook_config.py

COPY Examples Examples
Expand Down
1 change: 1 addition & 0 deletions install_cxx.jl
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
using Pkg
Pkg.update()
Pkg.clone( "https://github.com/Keno/Cxx.jl" )
Pkg.build( "Cxx" )
1 change: 1 addition & 0 deletions install_hecke.jl
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
using Pkg
Pkg.clone( "https://github.com/thofma/Hecke.jl.git" )
Pkg.build( "Hecke" )
1 change: 1 addition & 0 deletions install_ijulia.jl
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
using Pkg
Pkg.add( "IJulia" )
Pkg.add( "Gadfly" )
1 change: 1 addition & 0 deletions install_oscar.jl
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
using Pkg
Pkg.clone("https://github.com/oscar-system/Oscar.jl.git")
Pkg.build("Oscar")
1 change: 1 addition & 0 deletions install_polymake.jl
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
using Pkg
Pkg.clone("https://github.com/oscar-system/Polymake.jl.git")
Pkg.build("Polymake")
1 change: 1 addition & 0 deletions install_singular.jl
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
using Pkg
Pkg.clone("https://github.com/oscar-system/Singular.jl")
Pkg.build("Singular")