-
Notifications
You must be signed in to change notification settings - Fork 3.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[ci] refined command status check (#1980)
* refined command status check * refined Appveyor * redirect all warnings to stdout
- Loading branch information
1 parent
861de1c
commit 6f548ad
Showing
2 changed files
with
15 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,42 +1,43 @@ | ||
function Check-Output { | ||
param( [int]$ExitCode ) | ||
if ($ExitCode -ne 0) { | ||
$host.SetShouldExit($ExitCode) | ||
param( [bool]$success ) | ||
if (!$success) { | ||
$host.SetShouldExit(-1) | ||
Exit -1 | ||
} | ||
} | ||
|
||
if ($env:TASK -eq "regular") { | ||
mkdir $env:BUILD_SOURCESDIRECTORY/build; cd $env:BUILD_SOURCESDIRECTORY/build | ||
cmake -DCMAKE_GENERATOR_PLATFORM=x64 .. ; cmake --build . --target ALL_BUILD --config Release ; Check-Output $LastExitCode | ||
cmake -DCMAKE_GENERATOR_PLATFORM=x64 .. ; cmake --build . --target ALL_BUILD --config Release ; Check-Output $? | ||
cd $env:BUILD_SOURCESDIRECTORY/python-package | ||
python setup.py install --precompile ; Check-Output $LastExitCode | ||
python setup.py install --precompile ; Check-Output $? | ||
cp $env:BUILD_SOURCESDIRECTORY/Release/lib_lightgbm.dll $env:BUILD_ARTIFACTSTAGINGDIRECTORY | ||
cp $env:BUILD_SOURCESDIRECTORY/Release/lightgbm.exe $env:BUILD_ARTIFACTSTAGINGDIRECTORY | ||
} | ||
elseif ($env:TASK -eq "sdist") { | ||
cd $env:BUILD_SOURCESDIRECTORY/python-package | ||
python setup.py sdist --formats gztar ; Check-Output $LastExitCode | ||
cd dist; pip install @(Get-ChildItem *.gz) -v ; Check-Output $LastExitCode | ||
python setup.py sdist --formats gztar ; Check-Output $? | ||
cd dist; pip install @(Get-ChildItem *.gz) -v ; Check-Output $? | ||
} | ||
elseif ($env:TASK -eq "bdist") { | ||
cd $env:BUILD_SOURCESDIRECTORY/python-package | ||
python setup.py bdist_wheel --plat-name=win-amd64 --universal ; Check-Output $LastExitCode | ||
cd dist; pip install @(Get-ChildItem *.whl) ; Check-Output $LastExitCode | ||
python setup.py bdist_wheel --plat-name=win-amd64 --universal ; Check-Output $? | ||
cd dist; pip install @(Get-ChildItem *.whl) ; Check-Output $? | ||
cp @(Get-ChildItem *.whl) $env:BUILD_ARTIFACTSTAGINGDIRECTORY | ||
} | ||
|
||
$tests = $env:BUILD_SOURCESDIRECTORY + $(If ($env:TASK -eq "sdist") {"/tests/python_package_test"} Else {"/tests"}) # cannot test C API with "sdist" task | ||
pytest $tests ; Check-Output $LastExitCode | ||
pytest $tests ; Check-Output $? | ||
|
||
if ($env:TASK -eq "regular") { | ||
cd $env:BUILD_SOURCESDIRECTORY/examples/python-guide | ||
@("import matplotlib", "matplotlib.use('Agg')") + (Get-Content "plot_example.py") | Set-Content "plot_example.py" | ||
(Get-Content "plot_example.py").replace('graph.render(view=True)', 'graph.render(view=False)') | Set-Content "plot_example.py" | ||
foreach ($file in @(Get-ChildItem *.py)) { | ||
python $file ; Check-Output $LastExitCode | ||
@("import sys, warnings", "warnings.showwarning = lambda message, category, filename, lineno, file=None, line=None: sys.stdout.write(warnings.formatwarning(message, category, filename, lineno, line))") + (Get-Content $file) | Set-Content $file | ||
python $file ; Check-Output $? | ||
} # run all examples | ||
cd $env:BUILD_SOURCESDIRECTORY/examples/python-guide/notebooks | ||
conda install -y -n $env:CONDA_ENV ipywidgets notebook | ||
jupyter nbconvert --ExecutePreprocessor.timeout=180 --to notebook --execute --inplace *.ipynb ; Check-Output $LastExitCode # run all notebooks | ||
jupyter nbconvert --ExecutePreprocessor.timeout=180 --to notebook --execute --inplace *.ipynb ; Check-Output $? # run all notebooks | ||
} |