FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
python-xmlsec/.github/workflows/manylinux.yml at master · mdgreenwald/python-xmlsec · GitHub
mdgreenwald
/
python-xmlsec
Public
forked from
xmlsec/python-xmlsec
Notifications
You must be signed in to change notification settings
Fork
1
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
python-xmlsec
/
.github
/
workflows
/
manylinux.yml
Copy path
View runs
More file actions
More file actions
Latest commit
History
History
History
48 lines (48 loc) · 1.94 KB
Breadcrumbs
python-xmlsec
/
.github
/
workflows
/
manylinux.yml
Copy path
File metadata and controls
48 lines (48 loc) · 1.94 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
name
:
manylinux
on
:
[push, pull_request]
jobs
:
pep513
:
runs-on
:
ubuntu-latest
strategy
:
matrix
:
python-abi
:
[cp36-cp36m, cp37-cp37m, cp38-cp38, cp39-cp39, cp310-cp310]
image
:
-
manylinux2010_x86_64
-
manylinux_2_24_x86_64
-
musllinux_1_1_x86_64
exclude
:
-
image
:
manylinux2010_x86_64
python-abi
:
cp310-cp310
-
image
:
manylinux2010_i686
python-abi
:
cp310-cp310
container
:
quay.io/pypa/${{ matrix.image }}
steps
:
-
uses
:
actions/checkout@v1
-
name
:
Install build dependencies
run
:
|
# https://github.com/actions/runner/issues/2033
chown -R $(id -u):$(id -g) $PWD
/opt/python/${{ matrix.python-abi }}/bin/pip install --upgrade pip setuptools wheel build
-
name
:
Set environment variables
shell
:
bash
run
:
|
echo "PKGVER=$(/opt/python/${{ matrix.python-abi }}/bin/python setup.py --version)" >> $GITHUB_ENV
-
name
:
Build linux_x86_64 wheel
env
:
PYXMLSEC_STATIC_DEPS
:
true
run
:
|
/opt/python/${{ matrix.python-abi }}/bin/python -m build
-
name
:
Label manylinux wheel
run
:
|
ls -la dist/
auditwheel show dist/xmlsec-${{ env.PKGVER }}-${{ matrix.python-abi }}-linux_x86_64.whl
auditwheel repair dist/xmlsec-${{ env.PKGVER }}-${{ matrix.python-abi }}-linux_x86_64.whl
ls -la wheelhouse/
auditwheel show wheelhouse/xmlsec-${{ env.PKGVER }}-${{ matrix.python-abi }}-*${{ matrix.image }}*.whl
-
name
:
Install test dependencies
run
:
|
/opt/python/${{ matrix.python-abi }}/bin/pip install --upgrade -r requirements-test.txt
/opt/python/${{ matrix.python-abi }}/bin/pip install xmlsec --only-binary=xmlsec --no-index --find-links=wheelhouse/
-
name
:
Run tests
run
:
|
/opt/python/${{ matrix.python-abi }}/bin/pytest -v --color=yes
Back
|
FazBrowse Home
|
New Git URL