test-windows.ps1 6.63 KB
Newer Older
1
2
3
4
5
6
function Assert-Output {
    param( [Parameter(Mandatory = $true)][bool]$success )
    if (-not $success) {
        $host.SetShouldExit(-1)
        exit 1
    }
7
8
}

9
$env:CONDA_ENV = "test-env"
10
$env:LGB_VER = (Get-Content $env:BUILD_SOURCESDIRECTORY\VERSION.txt).trim()
11
12
13
14
15
16
17
# Use custom temp directory to avoid
# > warning MSB8029: The Intermediate directory or Output directory cannot reside under the Temporary directory
# > as it could lead to issues with incremental build.
# And make sure this directory is always clean
$env:TMPDIR = "$env:USERPROFILE\tmp"
Remove-Item $env:TMPDIR -Force -Recurse -ErrorAction Ignore
[Void][System.IO.Directory]::CreateDirectory($env:TMPDIR)
18

19
if ($env:TASK -eq "r-package") {
20
21
    & .\.ci\test-r-package-windows.ps1 ; Assert-Output $?
    Exit 0
22
23
}

24
if ($env:TASK -eq "cpp-tests") {
25
26
27
28
    cmake -B build -S . -DBUILD_CPP_TEST=ON -DUSE_DEBUG=ON -A x64
    cmake --build build --target testlightgbm --config Debug ; Assert-Output $?
    .\Debug\testlightgbm.exe ; Assert-Output $?
    Exit 0
29
30
}

31
if ($env:TASK -eq "swig") {
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
    $env:JAVA_HOME = $env:JAVA_HOME_8_X64  # there is pre-installed Eclipse Temurin 8 somewhere
    $ProgressPreference = "SilentlyContinue"  # progress bar bug extremely slows down download speed
    Invoke-WebRequest -Uri "https://sourceforge.net/projects/swig/files/latest/download" -OutFile $env:BUILD_SOURCESDIRECTORY/swig/swigwin.zip -UserAgent "curl"
    Add-Type -AssemblyName System.IO.Compression.FileSystem
    [System.IO.Compression.ZipFile]::ExtractToDirectory("$env:BUILD_SOURCESDIRECTORY/swig/swigwin.zip", "$env:BUILD_SOURCESDIRECTORY/swig") ; Assert-Output $?
    $SwigFolder = Get-ChildItem -Directory -Name -Path "$env:BUILD_SOURCESDIRECTORY/swig"
    $env:PATH = "$env:BUILD_SOURCESDIRECTORY/swig/$SwigFolder;" + $env:PATH
    $BuildLogFileName = "$env:BUILD_SOURCESDIRECTORY\cmake_build.log"
    cmake -B build -S . -A x64 -DUSE_SWIG=ON *> "$BuildLogFileName" ; $build_succeeded = $?
    Write-Output "CMake build logs:"
    Get-Content -Path "$BuildLogFileName"
    Assert-Output $build_succeeded
    $checks = Select-String -Path "${BuildLogFileName}" -Pattern "-- Found SWIG.*${SwigFolder}/swig.exe"
    $checks_cnt = $checks.Matches.length
    if ($checks_cnt -eq 0) {
        Write-Output "Wrong SWIG version was found (expected '${SwigFolder}'). Check the build logs."
        Assert-Output $False
    }
    cmake --build build --target ALL_BUILD --config Release ; Assert-Output $?
    if ($env:AZURE -eq "true") {
        cp ./build/lightgbmlib.jar $env:BUILD_ARTIFACTSTAGINGDIRECTORY/lightgbmlib_win.jar ; Assert-Output $?
    }
    Exit 0
55
56
}

57
58
59
60
# setup for Python
conda init powershell
conda activate
conda config --set always_yes yes --set changeps1 no
61
conda update -q -y conda "python=$env:PYTHON_VERSION[build=*cpython]"
62
63

if ($env:PYTHON_VERSION -eq "3.7") {
64
    $env:CONDA_REQUIREMENT_FILE = "$env:BUILD_SOURCESDIRECTORY/.ci/conda-envs/ci-core-py37.txt"
65
} elseif ($env:PYTHON_VERSION -eq "3.8") {
66
    $env:CONDA_REQUIREMENT_FILE = "$env:BUILD_SOURCESDIRECTORY/.ci/conda-envs/ci-core-py38.txt"
67
} else {
68
    $env:CONDA_REQUIREMENT_FILE = "$env:BUILD_SOURCESDIRECTORY/.ci/conda-envs/ci-core.txt"
69
70
71
}

conda create `
72
73
74
75
    -y `
    -n $env:CONDA_ENV `
    --file $env:CONDA_REQUIREMENT_FILE `
    "python=$env:PYTHON_VERSION[build=*cpython]" ; Assert-Output $?
76
77

if ($env:TASK -ne "bdist") {
78
    conda activate $env:CONDA_ENV
79
}
80

81
cd $env:BUILD_SOURCESDIRECTORY
82
if ($env:TASK -eq "regular") {
83
84
85
86
87
    cmake -B build -S . -A x64 ; Assert-Output $?
    cmake --build build --target ALL_BUILD --config Release ; Assert-Output $?
    sh ./build-python.sh install --precompile ; Assert-Output $?
    cp ./Release/lib_lightgbm.dll $env:BUILD_ARTIFACTSTAGINGDIRECTORY
    cp ./Release/lightgbm.exe $env:BUILD_ARTIFACTSTAGINGDIRECTORY
88
89
}
elseif ($env:TASK -eq "sdist") {
90
91
92
    sh ./build-python.sh sdist ; Assert-Output $?
    sh ./.ci/check-python-dists.sh ./dist ; Assert-Output $?
    cd dist; pip install @(Get-ChildItem *.gz) -v ; Assert-Output $?
93
94
}
elseif ($env:TASK -eq "bdist") {
95
96
97
98
99
    # Import the Chocolatey profile module so that the RefreshEnv command
    # invoked below properly updates the current PowerShell session environment.
    $module = "$env:ChocolateyInstall\helpers\chocolateyProfile.psm1"
    Import-Module "$module" ; Assert-Output $?
    RefreshEnv
100

101
102
    Write-Output "Current OpenCL drivers:"
    Get-ItemProperty -Path Registry::HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\OpenCL\Vendors
103

104
105
106
107
108
    conda activate $env:CONDA_ENV
    sh "build-python.sh" bdist_wheel --integrated-opencl ; Assert-Output $?
    sh ./.ci/check-python-dists.sh ./dist ; Assert-Output $?
    cd dist; pip install @(Get-ChildItem *py3-none-win_amd64.whl) ; Assert-Output $?
    cp @(Get-ChildItem *py3-none-win_amd64.whl) $env:BUILD_ARTIFACTSTAGINGDIRECTORY
109
} elseif (($env:APPVEYOR -eq "true") -and ($env:TASK -eq "python")) {
110
111
112
113
114
    if ($env:COMPILER -eq "MINGW") {
        sh ./build-python.sh install --mingw ; Assert-Output $?
    } else {
        sh ./build-python.sh install; Assert-Output $?
    }
115
116
}

117
if (($env:TASK -eq "sdist") -or (($env:APPVEYOR -eq "true") -and ($env:TASK -eq "python"))) {
118
119
    # cannot test C API with "sdist" task
    $tests = $env:BUILD_SOURCESDIRECTORY + "/tests/python_package_test"
120
} else {
121
    $tests = $env:BUILD_SOURCESDIRECTORY + "/tests"
122
123
}
if ($env:TASK -eq "bdist") {
124
125
    # Make sure we can do both CPU and GPU; see tests/python_package_test/test_dual.py
    $env:LIGHTGBM_TEST_DUAL_CPU_GPU = "1"
126
}
127

128
pytest $tests ; Assert-Output $?
129

130
if (($env:TASK -eq "regular") -or (($env:APPVEYOR -eq "true") -and ($env:TASK -eq "python"))) {
131
132
133
134
135
136
137
138
139
140
141
    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"  # prevent interactive window mode
    conda install -y -n $env:CONDA_ENV "h5py>=3.10" "ipywidgets>=8.1.2" "notebook>=7.1.2"
    foreach ($file in @(Get-ChildItem *.py)) {
        @("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 ; Assert-Output $?
    }  # run all examples
    cd $env:BUILD_SOURCESDIRECTORY/examples/python-guide/notebooks
    (Get-Content "interactive_plot_example.ipynb").replace('INTERACTIVE = False', 'assert False, \"Interactive mode disabled\"') | Set-Content "interactive_plot_example.ipynb"
    jupyter nbconvert --ExecutePreprocessor.timeout=180 --to notebook --execute --inplace *.ipynb ; Assert-Output $?  # run all notebooks
142
}