Skip to content

Commit bacb8c7

Browse files
committed
try bilding wheels now
1 parent 521efd0 commit bacb8c7

File tree

1 file changed

+2
-11
lines changed

1 file changed

+2
-11
lines changed

.github/workflows/wheels.yml

Lines changed: 2 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
strategy:
2121
matrix:
2222
# Macos 13 is an intel runner and macos 14 is an apple silicon runner
23-
os: [ubuntu-22.04, ubuntu-22.04-arm]
23+
os: [ubuntu-22.04, ubuntu-22.04-arm, windows-latest, macos-13, macos-14]
2424

2525

2626
steps:
@@ -34,15 +34,6 @@ jobs:
3434
uses: actions/setup-python@v5
3535
with:
3636
python-version: "3.12"
37-
38-
- name: Debug directory contents
39-
run: |
40-
echo "Current working directory:"
41-
pwd
42-
echo "Listing files in the example directory:"
43-
ls -alh /home/runner/work/onepassword-sdk-python/onepassword-sdk-python/example/
44-
echo "Attempting to read example.py:"
45-
python3 ${{github.workspace}}/example/example.py
4637

4738
- name: Build wheels
4839
env:
@@ -51,7 +42,7 @@ jobs:
5142
CIBW_MANYLINUX_AARCH64_IMAGE: "quay.io/pypa/manylinux_2_34_aarch64"
5243
CIBW_ARCHS: "native"
5344
CIBW_BEFORE_TEST: "pip install pydantic cryptography"
54-
CIBW_TEST_COMMAND: "python /home/runner/work/onepassword-sdk-python/onepassword-sdk-python/example/example.py"
45+
CIBW_TEST_COMMAND: python3 ${{github.workspace}}/example/example.py
5546
MACOSX_DEPLOYMENT_TARGET: 11.0 # Required for building on macOS
5647
OP_SERVICE_ACCOUNT_TOKEN: ${{ secrets.TEST_SERVICE_ACCOUNT_TOKEN }}
5748
continue-on-error: true

0 commit comments

Comments
 (0)