Skip to content

Commit

Permalink
Do not build automatically for now
Browse files Browse the repository at this point in the history
  • Loading branch information
sdispater committed Sep 12, 2018
1 parent 069ab36 commit ccb149d
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 51 deletions.
14 changes: 0 additions & 14 deletions .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
37 changes: 0 additions & 37 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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

0 comments on commit ccb149d

Please sign in to comment.