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

Commit

Permalink
fix path to be static
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronmarkham committed Jul 16, 2019
1 parent 1b725c3 commit 6b85abe
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 11 deletions.
10 changes: 10 additions & 0 deletions ci/docker/runtime_functions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -1210,6 +1210,16 @@ test_ubuntu_cpu_python3() {
build_docs() {
set -ex
pushd .

# Setup environment for Julia docs
export PATH="/work/julia10/bin:$PATH"
export MXNET_HOME='/work/mxnet'
export JULIA_DEPOT_PATH='/work/julia-depot'

julia -e 'using InteractiveUtils; versioninfo()'
export LD_PRELOAD='/usr/lib/x86_64-linux-gnu/libjemalloc.so'
export LD_LIBRARY_PATH=/work/mxnet/lib:$LD_LIBRARY_PATH

cd /work/mxnet/docs/build_version_doc
# Parameters are set in the Jenkins pipeline: restricted-website-build
# $1: the list of branches/tags to build
Expand Down
11 changes: 0 additions & 11 deletions docs/build_version_doc/build_all_version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -46,17 +46,6 @@ set -x
# Set OPTS to any Sphinx build options, like -W for "warnings as errors"
OPTS=

# Setup environment for Julia docs
export PATH="$1/bin:$PATH"
export MXNET_HOME='/work/mxnet'
export JULIA_DEPOT_PATH='/work/julia-depot'
export INTEGRATION_TEST=1

julia -e 'using InteractiveUtils; versioninfo()'
export LD_PRELOAD='/usr/lib/x86_64-linux-gnu/libjemalloc.so'
export LD_LIBRARY_PATH=/work/mxnet/lib:$LD_LIBRARY_PATH


# $1 is the list of branches/tags to build
if [ -z "$1" ]
then
Expand Down

0 comments on commit 6b85abe

Please sign in to comment.