|
| 1 | +version: 2.1 |
| 2 | + |
| 3 | +orbs: |
| 4 | + python: circleci/[email protected] |
| 5 | + |
| 6 | +jobs: |
| 7 | + python_test: |
| 8 | + parameters: |
| 9 | + python_ver: |
| 10 | + type: string |
| 11 | + default: "3.6" |
| 12 | + docker: |
| 13 | + - image: circleci/python:<< parameters.python_ver >> |
| 14 | + steps: |
| 15 | + - checkout |
| 16 | + - python/load-cache: |
| 17 | + dependency-file: requirements_dev.txt |
| 18 | + key: depsv3-{{ .Branch }}.{{ arch }}-PY<< parameters.python_ver >> |
| 19 | + - run: |
| 20 | + name: Deps |
| 21 | + command: | |
| 22 | + sudo apt-get install cmake openssh-server |
| 23 | + pip install -r requirements_dev.txt |
| 24 | + - python/save-cache: |
| 25 | + dependency-file: requirements_dev.txt |
| 26 | + key: depsv3-{{ .Branch }}.{{ arch }}-PY<< parameters.python_ver >> |
| 27 | + - run: |
| 28 | + command: | |
| 29 | + python setup.py build_ext --inplace |
| 30 | + eval "$(ssh-agent -s)" |
| 31 | + name: Build |
| 32 | + - run: |
| 33 | + command: | |
| 34 | + ls -lhtr ssh2/ |
| 35 | + pwd |
| 36 | + pytest tests |
| 37 | + flake8 ssh2 |
| 38 | + python setup.py sdist |
| 39 | + cd dist; pip install *; python -c 'from ssh2.session import Session; Session()'; cd .. |
| 40 | + cd doc |
| 41 | + make html |
| 42 | + cd .. |
| 43 | + name: Test |
| 44 | + |
| 45 | + osx: |
| 46 | + parameters: |
| 47 | + xcode_ver: |
| 48 | + type: string |
| 49 | + default: "11.6.0" |
| 50 | + macos: |
| 51 | + xcode: << parameters.xcode_ver >> |
| 52 | + environment: |
| 53 | + HOMEBREW_NO_AUTO_UPDATE: 1 |
| 54 | + SYSTEM_LIBSSH2: 1 |
| 55 | + steps: |
| 56 | + - checkout |
| 57 | + - run: |
| 58 | + name: deps |
| 59 | + command: | |
| 60 | + brew install cmake git-lfs python libssh2 |
| 61 | + pip3 install twine |
| 62 | + which twine |
| 63 | + - run: |
| 64 | + name: Build Wheel |
| 65 | + command: | |
| 66 | + ./ci/osx-wheel.sh |
| 67 | + - store_artifacts: |
| 68 | + path: wheels |
| 69 | + - run: |
| 70 | + name: Upload Wheel |
| 71 | + command: | |
| 72 | + twine upload --skip-existing -u $PYPI_USER -p $PYPI_PASSWORD wheels/* |
| 73 | +
|
| 74 | + manylinux: |
| 75 | + machine: |
| 76 | + image: ubuntu-1604:201903-01 |
| 77 | + steps: |
| 78 | + - checkout |
| 79 | + - python/load-cache: |
| 80 | + key: manylinuxdepsv6-{{ .Branch }}.{{ arch }} |
| 81 | + dependency-file: requirements_dev.txt |
| 82 | + - run: |
| 83 | + name: Git LFS |
| 84 | + command: | |
| 85 | + curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.deb.sh | sudo bash |
| 86 | + sudo apt-get install git-lfs |
| 87 | + git lfs install |
| 88 | + git lfs pull |
| 89 | + - run: |
| 90 | + name: Deps |
| 91 | + command: | |
| 92 | + sudo apt-get install python-pip |
| 93 | + pip install -U pip |
| 94 | + pip install twine |
| 95 | + which twine |
| 96 | + - python/save-cache: |
| 97 | + key: manylinuxdepsv6-{{ .Branch }}.{{ arch }} |
| 98 | + dependency-file: requirements_dev.txt |
| 99 | + - run: |
| 100 | + name: Build Wheels |
| 101 | + command: | |
| 102 | + if [[ -z "${CIRCLE_PULL_REQUEST}" ]]; then |
| 103 | + echo "$DOCKER_PASSWORD" | docker login -u="$DOCKER_USERNAME" --password-stdin; |
| 104 | + fi |
| 105 | + ./ci/travis/build-manylinux.sh |
| 106 | + - run: |
| 107 | + name: sdist |
| 108 | + command: python setup.py sdist |
| 109 | + - run: |
| 110 | + name: Upload Wheels |
| 111 | + command: | |
| 112 | + twine upload --skip-existing -u $PYPI_USER -p $PYPI_PASSWORD dist/* wheelhouse/* |
| 113 | +
|
| 114 | +workflows: |
| 115 | + version: 2.1 |
| 116 | + main: |
| 117 | + jobs: |
| 118 | + - python_test: |
| 119 | + matrix: |
| 120 | + parameters: |
| 121 | + python_ver: |
| 122 | + - "3.6" |
| 123 | + - "3.7" |
| 124 | + - "3.8" |
| 125 | + filters: |
| 126 | + tags: |
| 127 | + ignore: /.*/ |
| 128 | + - manylinux: |
| 129 | + context: Docker |
| 130 | + filters: |
| 131 | + tags: |
| 132 | + only: /.*/ |
| 133 | + branches: |
| 134 | + ignore: /.*/ |
| 135 | + - osx: |
| 136 | + matrix: |
| 137 | + parameters: |
| 138 | + xcode_ver: |
| 139 | + - "11.6.0" |
| 140 | + - "11.1.0" |
| 141 | + filters: |
| 142 | + tags: |
| 143 | + only: /.*/ |
| 144 | + branches: |
| 145 | + ignore: /.*/ |
0 commit comments