https://github.com/RaRe-Technologies/gensim
Raw File
Tip revision: e889fa3d45a406cabbc7e180fa9a8ee3f76ac6f0 authored by Michael Penkov on 02 May 2020, 23:52:10 UTC
update CHANGELOG for v3.8.3
Tip revision: e889fa3
appveyor.yml
# AppVeyor.com is a Continuous Integration service to build and run tests under
# Windows
# https://ci.appveyor.com/project/tmylk/gensim

environment:
  global:
    # SDK v7.0 MSVC Express 2008's SetEnv.cmd script will fail if the
    # /E:ON and /V:ON options are not enabled in the batch script intepreter
    # See: http://stackoverflow.com/a/13751649/163740
    CMD_IN_ENV: "cmd /E:ON /V:ON /C .\\continuous_integration\\appveyor\\run_with_env.cmd"
    WHEELHOUSE_UPLOADER_USERNAME: "Lev.Konstantinovskiy"
    WHEELHOUSE_UPLOADER_SECRET:
      secure: qXqY3dFmLOqvxa3Om2gQi/BjotTOK+EP2IPLolBNo0c61yDtNWxbmE4wH3up72Be
    TOX_PARALLEL_NO_SPINNER: 1

  matrix:
# Python 3.8 builds on Appveyor/Windows failing; commented-out for now pending resolution
# see comment at <https://github.com/RaRe-Technologies/gensim/pull/2715#issuecomment-569457589>
#    - PYTHON: "C:\\Python38-x64"
#      PYTHON_VERSION: "3.8.1"
#      PYTHON_ARCH: "64"
#      TOXENV: "py38-win"

    - PYTHON: "C:\\Python37-x64"
      PYTHON_VERSION: "3.7.6"
      PYTHON_ARCH: "64"
      TOXENV: "py37-win"

    - PYTHON: "C:\\Python36-x64"
      PYTHON_VERSION: "3.6.10"
      PYTHON_ARCH: "64"
      TOXENV: "py36-win"

    - PYTHON: "C:\\Python27-x64"
      PYTHON_VERSION: "2.7.17"
      PYTHON_ARCH: "64"
      TOXENV: "py27-win"

init:
  - "ECHO %PYTHON% %PYTHON_VERSION% %PYTHON_ARCH%"
  - "ECHO \"%APPVEYOR_SCHEDULED_BUILD%\""
  # If there is a newer build queued for the same PR, cancel this one.
  # The AppVeyor 'rollout builds' option is supposed to serve the same
  # purpose but it is problematic because it tends to cancel builds pushed
  # directly to master instead of just PR builds (or the converse).
  # credits: JuliaLang developers.
  - ps: if ($env:APPVEYOR_PULL_REQUEST_NUMBER -and $env:APPVEYOR_BUILD_NUMBER -ne ((Invoke-RestMethod `
        https://ci.appveyor.com/api/projects/$env:APPVEYOR_ACCOUNT_NAME/$env:APPVEYOR_PROJECT_SLUG/history?recordsNumber=50).builds | `
        Where-Object pullRequestId -eq $env:APPVEYOR_PULL_REQUEST_NUMBER)[0].buildNumber) { `
          Write-Host "There are newer queued builds for this pull request, skipping build."
          Exit-AppveyorBuild
        }

install:
  # Install Python (from the official .msi of http://python.org) and pip when
  # not already installed.
  - "powershell ./continuous_integration/appveyor/install.ps1"
  - "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
  - "python -m pip install -U pip tox"

  - "python -m pip install Cython==0.29.14"

  # Check that we have the expected versions and architecture
  - "pip --version"
  - "python --version"
  - "python -c \"import struct; print(struct.calcsize('P') * 8)\""

build: false

test_script:
  - tox -vv

cache:
  # Use the appveyor cache to avoid re-downloading large archives such
  # the MKL numpy and scipy wheels mirrored on a rackspace cloud
  # container, speed up the appveyor jobs and reduce bandwidth
  # usage on our rackspace account.
  - '%APPDATA%\pip\Cache'
back to top