Skip to content

Commit 506f219

Browse files
committed
add new yml file to build wheels for linux
1 parent f25ac23 commit 506f219

2 files changed

Lines changed: 32 additions & 1 deletion

File tree

.github/workflows/bld_wheels_and_upload.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Build and upload to PyPI
33
on:
44
push:
55
branches:
6-
- workfolw_test
6+
- workfolw_testss
77
# Sequence of patterns matched against refs/tags
88
tags:
99
- 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: Build linux wheel
2+
# Build on every workflow_dispatch, branch push, tag push, and pull request change
3+
on:
4+
push:
5+
branches:
6+
- workfolw_test
7+
# Sequence of patterns matched against refs/tags
8+
tags:
9+
- 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10
10+
11+
jobs:
12+
13+
build_wheels_linux:
14+
name: Build wheels on ${{ matrix.os }}
15+
runs-on: ${{ matrix.os }}
16+
strategy:
17+
matrix:
18+
os: [ubuntu-latest]
19+
20+
steps:
21+
- uses: actions/checkout@v4.2.2
22+
- name: Build wheels
23+
uses: pypa/cibuildwheel@v2.22.0
24+
env:
25+
#CIBW_MANYLINUX_X86_64_IMAGE: manylinux_2_28 manylinux2014
26+
CIBW_SKIP: "cp36-* *-musllinux_* pp* *-*linux_{aarch64,ppc64le}"
27+
28+
- uses: actions/upload-artifact@v4.4.3
29+
with:
30+
name: ibmdb-wheels-${{ matrix.os }}
31+
path: wheelhouse/*.whl

0 commit comments

Comments
 (0)