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

Commit

Permalink
add comments
Browse files Browse the repository at this point in the history
  • Loading branch information
iblislin committed Jan 23, 2019
1 parent fa0bf5c commit a713aed
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions ci/windows/test_jl07_cpu.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -48,5 +48,9 @@ $src='
'

$src > .\ci-build.jl

# Redirect all stderr output to stdout,
# since Julia loggers output stuffs to stderr.
# Then, stderr triggers powershell NativeCommandError.
& $JULIA .\ci-build.jl 2>&1 | %{ "$_" }
if ($LastExitCode -eq 1) { Throw ("Error") }
4 changes: 4 additions & 0 deletions ci/windows/test_jl10_cpu.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -48,5 +48,9 @@ $src='
'

$src > .\ci-build.jl

# Redirect all stderr output to stdout,
# since Julia loggers output stuffs to stderr.
# Then, stderr triggers powershell NativeCommandError.
& $JULIA .\ci-build.jl 2>&1 | %{ "$_" }
if ($LastExitCode -eq 1) { Throw ("Error") }

0 comments on commit a713aed

Please sign in to comment.