|
| 1 | +# TODO: run in PR/test mode (larger matrix) vs "all-in-one" artifact/packaging mode |
| 2 | +# TODO: use dynamic matrix so PRs are multi-job and tag builds are one (consolidate artifacts) |
| 3 | +# TODO: consider secure credential storage for inline upload on tags? Or keep that all manual/OOB for security... |
| 4 | +# TODO: refactor libyaml/pyyaml tests to enable first-class output for AppVeyor |
| 5 | +# TODO: get version number from setup.py and/or lib(3)/__version__ |
| 6 | +# Update-AppveyorBuild -Version $dynamic_version |
| 7 | + |
| 8 | +Function Bootstrap() { |
| 9 | + # uncomment when we want to start testing on Python 3.8 |
| 10 | + # ensure py38 is present (current Appveyor VS2015 image doesn't include it) |
| 11 | + #If(-not $(Test-Path C:\Python38)) { |
| 12 | + # choco.exe install python3 --version=3.8.0-a2 --forcex86 --force #--install-arguments="TargetDir=C:\Python38 PrependPath=0" --no-progress |
| 13 | + #} |
| 14 | + |
| 15 | + #If(-not $(Test-Path C:\Python38-x64)) { |
| 16 | + # choco.exe install python3 --version=3.8.0-a2 --force #--install-arguments="TargetDir=C:\Python38-x64 PrependPath=0" --no-progress |
| 17 | + #} |
| 18 | + |
| 19 | + Write-Output "patching Windows SDK bits for distutils" |
| 20 | + |
| 21 | + # patch 7.0/7.1 vcvars SDK bits up to work with distutils query |
| 22 | + Set-Content -Path 'C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\bin\amd64\vcvarsamd64.bat' '@CALL "C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\bin\vcvars64.bat"' |
| 23 | + Set-Content -Path 'C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\bin\amd64\vcvars64.bat' '@CALL "C:\Program Files\Microsoft SDKs\Windows\v7.1\Bin\SetEnv.cmd" /Release /x64' |
| 24 | + |
| 25 | + # patch VS9 x64 CMake config for VS Express, hide `reg.exe` stderr noise |
| 26 | + $noise = reg.exe import packaging\build\FixVS9CMake.reg 2>&1 |
| 27 | + |
| 28 | + If($LASTEXITCODE -ne 0) { |
| 29 | + throw "reg failed with error code $LASTEXITCODE" |
| 30 | + } |
| 31 | + |
| 32 | + Copy-Item -Path "C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\vcpackages\AMD64.VCPlatform.config" -Destination "C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\vcpackages\AMD64.VCPlatform.Express.config" -Force |
| 33 | + Copy-Item -Path "C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\vcpackages\Itanium.VCPlatform.config" -Destination "C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\vcpackages\Itanium.VCPlatform.Express.config" -Force |
| 34 | + |
| 35 | + # git spews all over stderr unless we tell it not to |
| 36 | + $env:GIT_REDIRECT_STDERR="2>&1"; |
| 37 | + |
| 38 | + $libyaml_repo_url = If($env:libyaml_repo_url) { $env:libyaml_repo_url } Else { "https://github.com/yaml/libyaml.git" } |
| 39 | + $libyaml_refspec = If($env:libyaml_refspec) { $env:libyaml_refspec } Else { "master" } |
| 40 | + |
| 41 | + Write-Output "cloning libyaml from $libyaml_repo_url / $libyaml_refspec" |
| 42 | + |
| 43 | + If(-not $(Test-Path .\libyaml)) { |
| 44 | + git clone -b $libyaml_refspec $libyaml_repo_url 2>&1 |
| 45 | + } |
| 46 | +} |
| 47 | + |
| 48 | +Function Build-Wheel($python_path) { |
| 49 | + |
| 50 | + #$python_path = Join-Path C:\ $env:PYTHON_VER |
| 51 | + $python = Join-Path $python_path python.exe |
| 52 | + |
| 53 | + Write-Output "building pyyaml wheel for $python_path" |
| 54 | + |
| 55 | + # query distutils for the VC version used to build this Python; translate to a VS version to choose the right generator |
| 56 | + $python_vs_buildver = & $python -c "from distutils.version import LooseVersion; from distutils.msvc9compiler import get_build_version; print(LooseVersion(str(get_build_version())).version[0])" |
| 57 | + |
| 58 | + $python_cmake_generator = switch($python_vs_buildver) { |
| 59 | + "9" { "Visual Studio 9 2008" } |
| 60 | + "10" { "Visual Studio 10 2010" } |
| 61 | + "14" { "Visual Studio 14 2015" } |
| 62 | + default { throw "Python was built with unknown VS build version: $python_vs_buildver" } |
| 63 | + } |
| 64 | + |
| 65 | + # query arch this python was built for |
| 66 | + $python_arch = & $python -c "from distutils.util import get_platform; print(str(get_platform()))" |
| 67 | + |
| 68 | + if($python_arch -eq 'win-amd64') { |
| 69 | + $python_cmake_generator += " Win64" |
| 70 | + $vcvars_arch = "x64" |
| 71 | + } |
| 72 | + |
| 73 | + # snarf VS vars (paths, etc) for the matching VS version and arch that built this Python |
| 74 | + $raw_vars_out = & cmd.exe /c "`"C:\Program Files (x86)\Microsoft Visual Studio $($python_vs_buildver).0\VC\vcvarsall.bat`" $vcvars_arch & set" |
| 75 | + foreach($kv in $raw_vars_out) { |
| 76 | + If($kv -match "=") { |
| 77 | + $kv = $kv.Split("=", 2) |
| 78 | + Set-Item -Force "env:$kv[0]" $kv[1] |
| 79 | + } |
| 80 | + Else { |
| 81 | + Write-Output $kv |
| 82 | + } |
| 83 | + } |
| 84 | + |
| 85 | + # ensure pip is current (some appveyor pips are not) |
| 86 | + & $python -W "ignore:DEPRECATION" -m pip install --upgrade pip |
| 87 | + |
| 88 | + # ensure required-for-build packages are present and up-to-date |
| 89 | + & $python -W "ignore:DEPRECATION" -m pip install --upgrade cython wheel setuptools --no-warn-script-location |
| 90 | + |
| 91 | + pushd libyaml |
| 92 | + git clean -fdx |
| 93 | + popd |
| 94 | + |
| 95 | + mkdir libyaml\build |
| 96 | + |
| 97 | + pushd libyaml\build |
| 98 | + cmake.exe -G $python_cmake_generator -DYAML_STATIC_LIB_NAME=yaml .. |
| 99 | + cmake.exe --build . --config Release |
| 100 | + popd |
| 101 | + |
| 102 | + & $python setup.py --with-libyaml build_ext -I libyaml\include -L libyaml\build\Release -D YAML_DECLARE_STATIC build test bdist_wheel |
| 103 | +} |
| 104 | + |
| 105 | +Function Upload-Artifacts() { |
| 106 | + Write-Output "uploading artifacts..." |
| 107 | + |
| 108 | + foreach($wheel in @(Resolve-Path dist\*.whl)) { |
| 109 | + Push-AppveyorArtifact $wheel |
| 110 | + } |
| 111 | +} |
| 112 | + |
| 113 | +Bootstrap |
| 114 | + |
| 115 | +$pythons = @( |
| 116 | +"C:\Python27" |
| 117 | +"C:\Python27-x64" |
| 118 | +"C:\Python34" |
| 119 | +"C:\Python34-x64" |
| 120 | +"C:\Python35" |
| 121 | +"C:\Python35-x64" |
| 122 | +"C:\Python36" |
| 123 | +"C:\Python36-x64" |
| 124 | +"C:\Python37" |
| 125 | +"C:\Python37-x64" |
| 126 | +) |
| 127 | + |
| 128 | +#$pythons = @("C:\$($env:PYTHON_VER)") |
| 129 | + |
| 130 | +foreach($python in $pythons) { |
| 131 | + Build-Wheel $python |
| 132 | +} |
| 133 | + |
| 134 | +Upload-Artifacts |
0 commit comments