diff options
| author | OpportunityLiu <[email protected]> | 2019-07-16 13:29:55 +0800 |
|---|---|---|
| committer | OpportunityLiu <[email protected]> | 2019-07-16 13:29:55 +0800 |
| commit | 5416165e691abf933a3b045ed53e8592f8a6e836 (patch) | |
| tree | e9f750f79f42fa65d8abcf14585b67805a968b86 | |
| parent | ac06d2aa0eb76a933a843aa37878535a427e8599 (diff) | |
print output in ci
| -rw-r--r-- | .appveyor.yml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.appveyor.yml b/.appveyor.yml index 760cd6834..11d509f0b 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -112,6 +112,8 @@ test_script: xmake lua --verbose --diagnosis runner.lua $_.fullname >stdout_file 2>stderr_file $outcome = if ($?) { "Passed" } else { $all_success = $false; "Failed" } } + Get-Content stdout_file | Out-Host + Get-Content stderr_file | Out-Host Update-AppveyorTest -Name $testname -Framework "xmake-test" -FileName $filename -Outcome $outcome -Duration $time.TotalMilliseconds -StdOut (Get-Content -Raw stdout_file) -StdErr (Get-Content -Raw stderr_file) } - ps: Pop-Location |
