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

Commit a713aed

Browse files
committed
add comments
1 parent fa0bf5c commit a713aed

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

ci/windows/test_jl07_cpu.ps1

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,5 +48,9 @@ $src='
4848
'
4949

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

ci/windows/test_jl10_cpu.ps1

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,5 +48,9 @@ $src='
4848
'
4949

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

0 commit comments

Comments
 (0)