summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Widman <jeff@jeffwidman.com>2023-01-31 16:28:19 -0800
committerGitHub <noreply@github.com>2023-01-31 16:28:19 -0800
commitd224a52062dfe7e126796781763d191b19e40025 (patch)
tree92ab0110859276337b823d996a1579fc7c1e8895
parent8f608f8477a2a1058bd8be071f5cbeabb540fc23 (diff)
downloadkazoo-d224a52062dfe7e126796781763d191b19e40025.tar.gz
refactor: delete back of travis config (#705)
We've seemed pretty happy with GitHub actions, and now that Travis is owned by PE their product seems to have gone downhill so even if we were looking for an alternative, I don't think Travis would be it. Regardless, this backup will still remain in git history, so no point in duplicating version control via `.bak` files.
-rw-r--r--.travis.yml.bak43
1 files changed, 0 insertions, 43 deletions
diff --git a/.travis.yml.bak b/.travis.yml.bak
deleted file mode 100644
index 45059a4..0000000
--- a/.travis.yml.bak
+++ /dev/null
@@ -1,43 +0,0 @@
-os: linux
-dist: xenial
-addons:
- apt:
- packages:
- - libevent-dev
- - krb5-kdc
- - krb5-admin-server
-cache:
- pip: true
- directories:
- - zookeeper
-language: python
-jobs:
- include:
- - python: '3.7'
- env: ZOOKEEPER_VERSION=3.4.14 TOX_VENV=py37-gevent-eventlet-sasl,codecov
- - python: '3.7'
- env: ZOOKEEPER_VERSION=3.5.8 ZOOKEEPER_PREFIX="apache-" ZOOKEEPER_SUFFIX="-bin" ZOOKEEPER_LIB="lib" TOX_VENV=py37-gevent-eventlet-sasl,codecov
- - python: '3.8'
- env: ZOOKEEPER_VERSION=3.4.14 TOX_VENV=py38-gevent-eventlet-sasl,codecov
- - python: '3.8'
- env: ZOOKEEPER_VERSION=3.5.8 ZOOKEEPER_PREFIX="apache-" ZOOKEEPER_SUFFIX="-bin" ZOOKEEPER_LIB="lib" TOX_VENV=py38-gevent-eventlet-sasl,codecov DEPLOY=true
- - python: 'pypy3'
- env: ZOOKEEPER_VERSION=3.4.14 TOX_VENV=pypy3-gevent-eventlet-sasl,codecov
- - python: 'pypy3'
- env: ZOOKEEPER_VERSION=3.5.8 ZOOKEEPER_PREFIX="apache-" ZOOKEEPER_SUFFIX="-bin" ZOOKEEPER_LIB="lib" TOX_VENV=pypy3-gevent-eventlet-sasl,codecov
-notifications:
- email: false
-install:
-- pip install tox
-script:
-- tox -e ${TOX_VENV}
-deploy:
- provider: pypi
- username: bbangert
- password:
- secure: L9yXZ2PhQ2wJKQkgigIzW3f/a3ajzUamMdThVelcp/NZeTJfzlC/t89lfSRwLh95o9Z/aIxC4T8yZvNrRzzyMEP0O6s1F69pVm5Px+KBuv82lmI7p5sKTYPp35CE9jH+K/52Fy0+Az5F502xLrkaO4VLLA+zhLffw/qyvNbZui0=
- on:
- tags: true
- condition: $DEPLOY = true
- distributions: release
- upload_docs: false