From ccb149d695d3b2530ba02eeae45e6f674bebcbf8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Eustace?= Date: Wed, 12 Sep 2018 12:35:42 -0500 Subject: [PATCH] Do not build automatically for now --- .appveyor.yml | 14 -------------- .travis.yml | 37 ------------------------------------- 2 files changed, 51 deletions(-) diff --git a/.appveyor.yml b/.appveyor.yml index 7d51c17dee5..10039084d88 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -25,17 +25,3 @@ install: test_script: - "poetry run pytest --cov=poetry tests/ -W ignore" - -after_test: - - "python sonnet make:release -P 2.7:C:/Python27-x64/python.exe -P 3.5:C:/Python35-x64/python.exe -P 3.6:C:/Python36-x64/python.exe -P 3.7:C:/Python37-x64/python.exe" - -deploy: - provider: S3 - access_key_id: $(AWS_ACCESS_KEY) - secret_access_key: - secure: $(AWS_SECRET_KEY) - bucket: "poetry.eustace.io" - folder: releases - artifact: releases - on: - APPVEYOR_REPO_TAG: true diff --git a/.travis.yml b/.travis.yml index 78721841fc8..1ec9607321e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,14 +3,12 @@ language: python stages: - linting - test - - build cache: pip: true directories: - "$HOME/.cache/pypoetry" - "$HOME/.cache/pre-commit" - - "$HOME/.pyenv_cache" install: - pip install pip -U @@ -31,38 +29,3 @@ jobs: - pre-commit install-hooks script: - pre-commit run --all-files - - stage: build - dist: xenial - sudo: true - python: '3.7' - before_install: - - | - git clone https://github.com/yyuu/pyenv.git ~/.pyenv - PYENV_ROOT="$HOME/.pyenv" - PYENV_CACHE_PATH="$HOME/.pyenv_cache" - PATH="$PYENV_ROOT/bin:$PATH" - eval "$(pyenv init -)" - pyenv install 3.7.0 - pyenv install 3.6.6 - pyenv install 3.5.6 - pyenv install 3.4.9 - pyenv install 2.7.15 - pyenv global 3.7.0 3.6.6 3.5.6 3.4.9 2.7.15 - pip install poetry --pre -U - poetry install --no-dev - install: skip - script: ./sonnet make:release - -deploy: - provider: s3 - bucket: "poetry.eustace.io" - skip_cleanup: true - local_dir: releases - upload-dir: releases - detect_encoding: true - access_key_id: "$AWS_ACCESS_KEY" - secret_access_key: - secure: "$AWS_SECRET_KEY" - on_build_success: true - on: - tags: true