Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cython
Commits
0fd87fd0
Commit
0fd87fd0
authored
Jul 07, 2021
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use different build jobs for manylinux release builds.
parent
999f8468
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
92 additions
and
12 deletions
+92
-12
.github/workflows/wheel-manylinux.yml
.github/workflows/wheel-manylinux.yml
+92
-12
No files found.
.github/workflows/wheel-manylinux.yml
View file @
0fd87fd0
...
@@ -5,7 +5,7 @@ on:
...
@@ -5,7 +5,7 @@ on:
types
:
[
created
]
types
:
[
created
]
jobs
:
jobs
:
deploy
:
python
:
runs-on
:
ubuntu-latest
runs-on
:
ubuntu-latest
steps
:
steps
:
-
uses
:
actions/checkout@v2
-
uses
:
actions/checkout@v2
...
@@ -15,29 +15,109 @@ jobs:
...
@@ -15,29 +15,109 @@ jobs:
with
:
with
:
python-version
:
3.8
python-version
:
3.8
-
name
:
Build manylinux1 x86 Python wheels
-
name
:
Install build dependencies
run
:
pip install -U setuptools pip wheel
-
name
:
Make sdist and Python wheel
run
:
make sdist pywheel
-
name
:
Upload sdist
uses
:
actions/upload-artifact@v2
with
:
name
:
sdist
path
:
dist/*.tar.gz
if-no-files-found
:
ignore
-
name
:
Upload Python wheel
uses
:
actions/upload-artifact@v2
with
:
name
:
wheel-Python
path
:
dist/*-none-any.whl
if-no-files-found
:
ignore
manylinux1-i686
:
runs-on
:
ubuntu-latest
steps
:
-
uses
:
actions/checkout@v2
-
name
:
Set up Python
uses
:
actions/setup-python@v1
with
:
python-version
:
3.8
-
name
:
Build Linux wheels
uses
:
RalfG/python-wheels-manylinux-build@v0.3.4-manylinux1_i686
uses
:
RalfG/python-wheels-manylinux-build@v0.3.4-manylinux1_i686
with
:
with
:
python-versions
:
'
cp27-cp27m
cp27-cp27mu
cp35-cp35m
cp36-cp36m
cp37-cp37m
cp38-cp38m
cp39-cp39m'
python-versions
:
'
cp27-cp27m
cp27-cp27mu
cp35-cp35m
cp36-cp36m
cp37-cp37m
cp38-cp38
cp39-cp39
cp39-cp39'
-
name
:
Upload wheels
uses
:
actions/upload-artifact@v2
with
:
name
:
wheels-Linux
path
:
dist/*-manylinux*.whl
if-no-files-found
:
ignore
manylinux1-x86_64
:
runs-on
:
ubuntu-latest
steps
:
-
uses
:
actions/checkout@v2
-
name
:
Set up Python
uses
:
actions/setup-python@v1
with
:
python-version
:
3.8
-
name
:
Build
manylinux1 AMD64 Python
wheels
-
name
:
Build
Linux
wheels
uses
:
RalfG/python-wheels-manylinux-build@v0.3.4-manylinux1_x86_64
uses
:
RalfG/python-wheels-manylinux-build@v0.3.4-manylinux1_x86_64
with
:
with
:
python-versions
:
'
cp27-cp27m
cp27-cp27mu
cp35-cp35m
cp36-cp36m
cp37-cp37m
cp38-cp38m
cp39-cp39m'
python-versions
:
'
cp27-cp27m
cp27-cp27mu
cp35-cp35m
cp36-cp36m
cp37-cp37m
cp38-cp38
cp39-cp39'
-
name
:
Upload wheels
uses
:
actions/upload-artifact@v2
with
:
name
:
wheels-Linux
path
:
wheels/*-manylinux*.whl
if-no-files-found
:
ignore
manylinux2014-i686
:
runs-on
:
ubuntu-latest
steps
:
-
uses
:
actions/checkout@v2
-
name
:
Set up Python
uses
:
actions/setup-python@v1
with
:
python-version
:
3.8
-
name
:
Build
manylinux2014 x86 Python
wheels
-
name
:
Build
Linux
wheels
uses
:
RalfG/python-wheels-manylinux-build@v0.3.4-manylinux2014_i686
uses
:
RalfG/python-wheels-manylinux-build@v0.3.4-manylinux2014_i686
with
:
with
:
python-versions
:
'
cp3
5-cp35m
cp36-cp36m
cp37-cp37m
cp38-cp38m
cp39-cp39m
'
python-versions
:
'
cp3
6-cp36m
cp37-cp37m
cp38-cp38
cp39-cp39
'
-
name
:
Build manylinux2014 AMD64 Python wheels
-
name
:
Upload wheels
uses
:
RalfG/python-wheels-manylinux-build@v0.3.4-manylinux2014_x86_64
uses
:
actions/upload-artifact@v2
with
:
name
:
wheels-Linux
path
:
wheels/*-manylinux2014*.whl
if-no-files-found
:
ignore
manylinux2014-x86_64
:
runs-on
:
ubuntu-latest
steps
:
-
uses
:
actions/checkout@v2
-
name
:
Set up Python
uses
:
actions/setup-python@v1
with
:
with
:
python-version
s
:
'
cp35-cp35m
cp36-cp36m
cp37-cp37m
cp38-cp38m
cp39-cp39m'
python-version
:
3.8
-
name
:
Build Linux wheels
uses
:
RalfG/python-wheels-manylinux-build@v0.3.4-manylinux2014_x86_64
with
:
python-versions
:
'
cp36-cp36m
cp37-cp37m
cp38-cp38
cp39-cp39'
-
name
:
Upload wheels
-
name
:
Upload wheels
uses
:
actions/upload-artifact@v2
uses
:
actions/upload-artifact@v2
with
:
with
:
name
:
wheels
name
:
wheels
-Linux
path
:
dist/*-manylinux
*.whl
path
:
wheels/*-manylinux2014
*.whl
if-no-files-found
:
ignore
if-no-files-found
:
ignore
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment