Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

Commit

Permalink
add Julia package as a submodule and enable CPU build
Browse files Browse the repository at this point in the history
  • Loading branch information
iblislin committed Oct 9, 2017
1 parent c56fa91 commit 91f4dab
Show file tree
Hide file tree
Showing 6 changed files with 27 additions and 5 deletions.
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,6 @@
[submodule "cub"]
path = cub
url = https://github.com/dmlc/cub
[submodule "julia-package"]
path = julia-package
url = https://github.com/dmlc/MXNet.jl.git
15 changes: 15 additions & 0 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -405,6 +405,21 @@ try {
}
}
},
'Julia 0.6: CPU': {
node('mxnetlinux') {
ws('workspace/ut-julia-cpu') {
init_git()
unpack_lib('cpu')
withEnv(['MXNET_HOME=/workspace/ut-julia-cpu']) {
timeout(time: max_timem unit: 'MINUTES') {
sh "${docker_run} cpu julia -e 'Pkg.clone(\"julia-package\", \"MXNet\")'"
sh "${docker_run} cpu julia -e 'Pkg.build(\"MXNet\")'"
sh "${docker_run} cpu julia -e 'Pkg.test(\"MXNet\")'"
}
}
}
}
},
'Python 2: CPU Win': {
node('mxnetwindows') {
ws('workspace/ut-python-cpu') {
Expand Down
1 change: 1 addition & 0 deletions julia-package
Submodule julia-package added at 0a5377
2 changes: 2 additions & 0 deletions tests/ci_build/Dockerfile.cpu
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,5 @@ COPY install/ubuntu_install_r.sh /install/
RUN /install/ubuntu_install_r.sh
COPY install/ubuntu_install_perl.sh /install/
RUN /install/ubuntu_install_perl.sh
COPY install/install_julia.sh /install/
RUN /install/install_julia.sh
10 changes: 5 additions & 5 deletions tests/ci_build/install/install_julia.sh
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@

set -e

wget https://julialang.s3.amazonaws.com/bin/linux/x64/0.5/julia-0.5.0-linux-x86_64.tar.gz
mv julia-0.5.0-linux-x86_64.tar.gz /tmp/
tar xfvz /tmp/julia-0.5.0-linux-x86_64.tar.gz
rm -f /tmp/julia-0.5.0-linux-x86_64.tar.gz
wget https://julialang-s3.julialang.org/bin/linux/x64/0.6/julia-0.6.0-linux-x86_64.tar.gz
mv julia-0.6.0-linux-x86_64.tar.gz /tmp/
tar xfvz /tmp/julia-0.6.0-linux-x86_64.tar.gz
rm -f /tmp/julia-0.6.0-linux-x86_64.tar.gz

# tar extracted in current directory
ln -s -f ${PWD}/julia-3c9d75391c/bin/julia /usr/bin/julia
ln -s -f ${PWD}/julia-903644385b/bin/julia /usr/bin/julia
1 change: 1 addition & 0 deletions tools/license_header.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@
'cub/',
'dlpack/',
'dmlc-core/',
'julia-package/',
'mshadow/',
'nnvm',
'ps-lite',
Expand Down

0 comments on commit 91f4dab

Please sign in to comment.