FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
msgpack-python/.github/workflows/wheel.yml at main · AvdN/msgpack-python · GitHub
AvdN
/
msgpack-python
Public
forked from
msgpack/msgpack-python
Notifications
You must be signed in to change notification settings
Fork
0
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
msgpack-python
/
.github
/
workflows
/
wheel.yml
Copy path
View runs
More file actions
More file actions
Latest commit
History
History
History
57 lines (49 loc) · 1.38 KB
Breadcrumbs
msgpack-python
/
.github
/
workflows
/
wheel.yml
Copy path
File metadata and controls
57 lines (49 loc) · 1.38 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
49
50
51
52
53
54
55
56
57
name
:
Build Wheels
on
:
push
:
branches
:
[main]
create
:
jobs
:
build_wheels
:
strategy
:
matrix
:
os
:
[ubuntu-22.04, windows-2022, macos-10.15]
runs-on
:
${{ matrix.os }}
name
:
Build wheels on ${{ matrix.os }}
steps
:
-
name
:
Checkout
uses
:
actions/checkout@v3
-
name
:
Set up QEMU
if
:
runner.os == 'Linux'
uses
:
docker/setup-qemu-action@v1
with
:
platforms
:
arm64
-
name
:
Set up Python 3.x
uses
:
actions/setup-python@v4
with
:
python-version
:
"
3.x
"
cache
:
"
pip
"
-
name
:
Prepare
shell
:
bash
run
:
|
pip install -r requirements.txt
make cython
-
name
:
Build
uses
:
pypa/cibuildwheel@v2.12.0
env
:
CIBW_TEST_REQUIRES
:
"
pytest
"
CIBW_TEST_COMMAND
:
"
pytest {package}/test
"
CIBW_ARCHS_LINUX
:
auto aarch64
CIBW_ARCHS_MACOS
:
x86_64 universal2 arm64
CIBW_SKIP
:
pp*
-
name
:
Upload Wheels to artifact
uses
:
actions/upload-artifact@v1
with
:
name
:
Wheels
path
:
wheelhouse
-
name
:
Publish Wheels to TestPyPI
if
:
github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
uses
:
pypa/gh-action-pypi-publish@release/v1
with
:
packages_dir
:
wheelhouse
password
:
${{ secrets.PYPI_API_TOKEN }}
Back
|
FazBrowse Home
|
New Git URL