Skip to content

Commit 24346c5

Browse files
committed
fix: wheelhouse job in CI/CD
1 parent cb5d7a0 commit 24346c5

File tree

1 file changed

+16
-1
lines changed

1 file changed

+16
-1
lines changed

.github/workflows/ci.yml

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,21 @@ jobs:
4747
with:
4848
python-version: ${{ env.MAIN_PYTHON_VERSION }}
4949

50+
build-wheelhouse:
51+
name: "Build wheelhouse for latest Python versions"
52+
runs-on: ${{ matrix.os }}
53+
strategy:
54+
matrix:
55+
os: [ubuntu-latest, windows-latest]
56+
python-version: ['3.8', '3.9', '3.10', '3.11']
57+
steps:
58+
- name: "Build a wheelhouse for ${{ matrix.python-version }}"
59+
uses: ansys/actions/[email protected]
60+
with:
61+
library-name: ${{ env.PACKAGE_NAME }}
62+
operating-system: ${{ matrix.os }}
63+
python-version: ${{ matrix.python-version }}
64+
5065
build-library:
5166
name: "Build library"
5267
runs-on: ubuntu-latest
@@ -97,4 +112,4 @@ jobs:
97112
uses: ansys/actions/doc-deploy-stable@v4
98113
with:
99114
cname: ${{ env.DOCUMENTATION_CNAME }}
100-
token: ${{ secrets.GITHUB_TOKEN }}
115+
token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)