From a79c02ecdf2ec7b8bfb84c8af42691029a35829d Mon Sep 17 00:00:00 2001 From: Elvis Pranskevichus Date: Wed, 22 Apr 2020 22:33:12 -0700 Subject: Drop Travis and Appveyor CI Switch to Github Actions exclusively --- .ci/appveyor.yml | 53 ----------------------------------------------------- 1 file changed, 53 deletions(-) delete mode 100644 .ci/appveyor.yml (limited to '.ci/appveyor.yml') diff --git a/.ci/appveyor.yml b/.ci/appveyor.yml deleted file mode 100644 index 9dcee48..0000000 --- a/.ci/appveyor.yml +++ /dev/null @@ -1,53 +0,0 @@ -environment: - global: - S3_UPLOAD_USERNAME: oss-ci-bot - S3_UPLOAD_BUCKET: magicstack-oss-releases - S3_UPLOAD_ACCESSKEY: - secure: 1vmOqSXq5zDN8UdezZ3H4l0A9LUJiTr7Wuy9whCdffE= - S3_UPLOAD_SECRET: - secure: XudOvV6WtY9yRoqKahXMswFth8SF1UTnSXws4UBjeqzQUjOx2V2VRvIdpPfiqUKt - - matrix: - - PYTHON: "C:\\Python35\\python.exe" - - PYTHON: "C:\\Python35-x64\\python.exe" - - PYTHON: "C:\\Python36\\python.exe" - - PYTHON: "C:\\Python36-x64\\python.exe" - - PYTHON: "C:\\Python37\\python.exe" - - PYTHON: "C:\\Python37-x64\\python.exe" - -branches: - # Avoid building PR branches. - only: - - master - - ci - - releases - -install: - - "%PYTHON% -m pip install --upgrade pip wheel setuptools" - - "%PYTHON% -m pip install --upgrade -r .ci/requirements-win.txt" - -build_script: - - "%PYTHON% setup.py build_ext --inplace" - -test_script: - - "%PYTHON% setup.py test" - -after_test: - - "%PYTHON% setup.py bdist_wheel" - -artifacts: - - path: dist\* - -deploy_script: - - ps: | - if ($env:appveyor_repo_branch -eq 'releases') { - $PACKAGE_VERSION = & "$env:PYTHON" ".ci/package-version.py" - $PYPI_VERSION = & "$env:PYTHON" ".ci/pypi-check.py" "immutables" - - if ($PACKAGE_VERSION -eq $PYPI_VERSION) { - Write-Error "immutables-$PACKAGE_VERSION is already published on PyPI" - exit 1 - } - - & "$env:PYTHON" ".ci/s3-upload.py" dist\*.whl - } -- cgit v1.2.3