From 5eb6c72ae4d0639e022050643aa35b957cb47837 Mon Sep 17 00:00:00 2001 From: xqt Date: Sat, 7 Oct 2023 16:35:39 +0200 Subject: [PATCH] [tests] Appveyor tests with different image Change-Id: I1f354e47998f88e05292f0a40951436ddb951d84 --- .appveyor.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.appveyor.yml b/.appveyor.yml index f374f7fdce..ab8d89a92d 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -16,8 +16,9 @@ environment: # Test the lowest supported release of each major Python version - - PYTHON: "C:\\Python361-x64" - PYTHON_VERSION: "3.6.1" + - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2013 + PYTHON: "C:\\Python36-x64" + PYTHON_VERSION: "3.6.6" PYTHON_ARCH: "64" # AppVeyor pre-installs these versions onto build machines @@ -54,11 +55,10 @@ init: - "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%" install: - - git submodule update --init + - if [%PYTHON_VERSION%]==[3.6.6] git submodule update --init http.sslVerify false + - if NOT [%PYTHON_VERSION%]==[3.6.6] git submodule update --init # Download the AppVeyor Python build accessories into subdirectory .\appveyor - mkdir appveyor - # Download Python 3.6.1 which isn't pre-installed - - ps: ./appveyor_install.ps1 - python --version - python -c "import platform; print(platform.machine())" - python -c "import struct; print('PYTHON_ARCH:', struct.calcsize('P') << 3)"