You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mxnet.apache.org by ib...@apache.org on 2019/01/20 11:12:35 UTC

[incubator-mxnet] branch ib/ci-jl-win updated: fix download

This is an automated email from the ASF dual-hosted git repository.

iblis pushed a commit to branch ib/ci-jl-win
in repository https://gitbox.apache.org/repos/asf/incubator-mxnet.git


The following commit(s) were added to refs/heads/ib/ci-jl-win by this push:
     new e4788af  fix download
e4788af is described below

commit e4788af14a22fddec42b6d570d037d41641ffb7f
Author: Iblis Lin <ib...@hs.ntnu.edu.tw>
AuthorDate: Sun Jan 20 19:12:29 2019 +0800

    fix download
---
 ci/windows/test_jl07_cpu.ps1 | 10 +++++++++-
 1 file changed, 9 insertions(+), 1 deletion(-)

diff --git a/ci/windows/test_jl07_cpu.ps1 b/ci/windows/test_jl07_cpu.ps1
index 8152c30..8bda88f 100644
--- a/ci/windows/test_jl07_cpu.ps1
+++ b/ci/windows/test_jl07_cpu.ps1
@@ -21,13 +21,21 @@ $env:MXNET_HOME=[io.path]::combine($PSScriptRoot, 'mxnet_home')
 $env:JULIA_URL="https://julialang-s3.julialang.org/bin/winnt/x64/0.7/julia-0.7.0-win64.exe"
 $env:JULIA_DEPOT_PATH=[io.path]::combine($PSScriptRoot, 'julia-depot')
 
+# mkdir
+New-item -ItemType Directory C:\julia07
+
 # Download most recent Julia Windows binary
-(new-object net.webclient).DownloadFile($env:JULIA_URL, "C:\julia07\julia-binary.exe")
+(New-Object System.Net.WebClient).DownloadFile($env:JULIA_URL, "C:\julia07\julia-binary.exe")
+if (! $?) { Throw ("Error on downloading Julia Windows binary") }
 
 # Run installer silently, output to C:\julia07\julia
 C:\julia07\julia-binary.exe /S /D=C:\julia07\julia
+if (! $?) { Throw ("Error on installing Julia") }
 
 C:\julia07\julia\bin\julia -e "using InteractiveUtils; versioninfo()"
 C:\julia07\julia\bin\julia -e "using Pkg; Pkg.develop(PackageSpec(name = \"MXNet\", path = \"julia\"))"
+if (! $?) { Throw ("Error on installing MXNet") }
 C:\julia07\julia\bin\julia -e "using Pkg; Pkg.build(\"MXNet\"))"
+if (! $?) { Throw ("Error on building MXNet") }
 C:\julia07\julia\bin\julia -e "using Pkg; Pkg.test(\"MXNet\"))"
+if (! $?) { Throw ("Error on testing") }