15
15
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
16
16
version : 2.1
17
17
18
- orbs :
19
- python :
circleci/[email protected]
20
18
21
19
jobs :
22
20
python_test :
23
21
parameters :
24
22
python_ver :
25
23
type : string
26
- default : " 3.9 "
24
+ default : " 3.10 "
27
25
docker :
28
26
- image : cimg/python:<< parameters.python_ver >>
29
27
steps :
30
28
- checkout
31
- - python/install-packages :
32
- pip-dependency-file : requirements_dev.txt
33
- pkg-manager : pip
34
29
- run :
35
30
name : Deps
36
31
command : |
37
32
sudo apt-get update
38
33
sudo apt-get install cmake openssh-server
34
+ pip install -r requirements_dev.txt
39
35
- run :
40
36
command : |
37
+ pip uninstall -y cython
41
38
pip install -e .
42
39
eval "$(ssh-agent -s)"
43
40
name : Build
44
41
- run :
45
42
command : |
46
43
set -x
47
- ls -lhtr ssh/
48
- pwd
49
- ldd -r ssh/session*.so
50
44
pytest tests
45
+ name : Test
46
+ - run :
47
+ command : |
48
+ pytest ci/integration_tests
49
+ name : Integration
50
+ - run :
51
+ command : |
51
52
flake8 ssh
53
+ name : Flake
54
+ - run :
55
+ command : |
52
56
python setup.py sdist
53
- cd dist; pip install *; cd ..
57
+ cd dist
58
+ pip install *
59
+ python -c 'from ssh.session import Session; Session()'
60
+ cd ..
61
+ name : Sdist Install
62
+ - run :
63
+ command : |
54
64
cd doc
55
65
make html
56
66
cd ..
57
- name : Test
67
+ name : Docs
58
68
59
69
osx :
60
70
parameters :
71
81
name : deps
72
82
command : |
73
83
brew install cmake git-lfs krb5 python libssh
84
+ brew link --force openssl
85
+ brew link --force libssh2
74
86
pip3 install twine
75
87
which twine
76
88
- run :
86
98
87
99
manylinux-x86_64 :
88
100
machine :
89
- image : ubuntu-2004:202201-02
101
+ image : ubuntu-2004:current
90
102
steps : &manylinux-steps
91
103
- checkout
92
- - run :
93
- name : sdist
94
- command : python setup.py sdist
95
- - python/install-packages :
96
- pip-dependency-file : requirements_dev.txt
97
- pkg-manager : pip
98
104
- run :
99
105
name : Git LFS
100
106
command : |
@@ -106,7 +112,7 @@ jobs:
106
112
name : Deps
107
113
command : |
108
114
sudo apt-get install python3-pip
109
- pip install -U pip
115
+ pip install -U pip setuptools
110
116
pip install twine
111
117
which twine
112
118
which python3
@@ -129,7 +135,7 @@ jobs:
129
135
130
136
manylinux-aarch64 :
131
137
machine :
132
- image : ubuntu-2004:202101-01
138
+ image : ubuntu-2004:current
133
139
resource_class : arm.medium
134
140
steps : *manylinux-steps
135
141
@@ -141,10 +147,10 @@ workflows:
141
147
matrix :
142
148
parameters :
143
149
python_ver :
144
- - " 3.6"
145
150
- " 3.8"
146
- - " 3.9 "
151
+ - " 3.10 "
147
152
- " 3.11"
153
+ - " 3.12"
148
154
filters :
149
155
tags :
150
156
ignore : /.*/
@@ -161,7 +167,8 @@ workflows:
161
167
parameters :
162
168
xcode_ver :
163
169
- " 14.0.0"
164
- - " 13.1.0"
170
+ - " 15.0.0"
171
+ - " 16.0.0"
165
172
context : Docker
166
173
filters :
167
174
tags :
0 commit comments