diff options
author | antektek <45912913+antektek@users.noreply.github.com> | 2019-01-10 01:19:29 +0100 |
---|---|---|
committer | Steve Dower <steve.dower@microsoft.com> | 2019-01-10 11:19:29 +1100 |
commit | 6aedfa6b9ac324587f64133c23757a66a8f355bb (patch) | |
tree | 71cea9044622898712b4039af962a95d1f8780d8 /.azure-pipelines | |
parent | Distutils no longer needs to remain compatible with 2.3 (GH-11423) (diff) | |
download | cpython-6aedfa6b9ac324587f64133c23757a66a8f355bb.tar.gz cpython-6aedfa6b9ac324587f64133c23757a66a8f355bb.tar.bz2 cpython-6aedfa6b9ac324587f64133c23757a66a8f355bb.zip |
bpo-34855: Fix EXTERNALS_DIR build variable for Windows (GH-11177)
Diffstat (limited to '.azure-pipelines')
-rw-r--r-- | .azure-pipelines/windows-appx-test.yml | 2 | ||||
-rw-r--r-- | .azure-pipelines/windows-steps.yml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/.azure-pipelines/windows-appx-test.yml b/.azure-pipelines/windows-appx-test.yml index 5f3fe6c9457..cad752b0a1e 100644 --- a/.azure-pipelines/windows-appx-test.yml +++ b/.azure-pipelines/windows-appx-test.yml @@ -36,7 +36,7 @@ jobs: Write-Host '##vso[task.setvariable variable=Py_IntDir]$(Build.BinariesDirectory)\obj' # UNDONE: Do not build to a different directory because of broken tests Write-Host '##vso[task.setvariable variable=Py_OutDir]$(Build.SourcesDirectory)\PCbuild' - Write-Host '##vso[task.setvariable variable=EXTERNAL_DIR]$(Build.BinariesDirectory)\externals' + Write-Host '##vso[task.setvariable variable=EXTERNALS_DIR]$(Build.BinariesDirectory)\externals' displayName: Update build locations - script: PCbuild\build.bat -e $(buildOpt) diff --git a/.azure-pipelines/windows-steps.yml b/.azure-pipelines/windows-steps.yml index cba00158ad1..3651ae03bc1 100644 --- a/.azure-pipelines/windows-steps.yml +++ b/.azure-pipelines/windows-steps.yml @@ -8,7 +8,7 @@ steps: Write-Host '##vso[task.setvariable variable=Py_IntDir]$(Build.BinariesDirectory)\obj' # UNDONE: Do not build to a different directory because of broken tests Write-Host '##vso[task.setvariable variable=Py_OutDir]$(Build.SourcesDirectory)\PCbuild' - Write-Host '##vso[task.setvariable variable=EXTERNAL_DIR]$(Build.BinariesDirectory)\externals' + Write-Host '##vso[task.setvariable variable=EXTERNALS_DIR]$(Build.BinariesDirectory)\externals' displayName: Update build locations - script: PCbuild\build.bat -e $(buildOpt) |