Skip to content

Commit 881497d

Browse files
committed
remove other jobs and see files path
1 parent f316654 commit 881497d

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

.github/workflows/wheels.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Build
1+
name: Build Wheels for Python SDK
22

33
on: [push, pull_request, workflow_dispatch] # this is just for testing
44
# push:
@@ -20,15 +20,19 @@ 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, windows-latest, macos-13, macos-14]
23+
os: [ubuntu-22.04, ubuntu-22.04-arm]
2424

2525

2626
steps:
2727
- uses: actions/checkout@v4
2828

2929
# Need to grab the SDK version for the wheel name
3030
- name: Extract SDK Version
31-
run: echo "SDK_VERSION=$(python -c 'import version; print(version.SDK_VERSION)')" >> $GITHUB_ENV
31+
run: echo "SDK_VERSION=$(python -c 'import version; print(version.SDK_VERSION)')" >> $GITHUB_ENV
32+
33+
- name: List Files in Example Directory
34+
run: ls -alh /home/runner/work/onepassword-sdk-python/onepassword-sdk-python/example/
35+
3236

3337
- name: Setup Python
3438
uses: actions/setup-python@v5
@@ -43,7 +47,7 @@ jobs:
4347
CIBW_ARCHS: "native"
4448
CIBW_BEFORE_TEST: "pip install pydantic cryptography"
4549
CIBW_TEST_COMMAND: "python ${{github.workspace}}/example/example.py"
46-
MACOSX_DEPLOYMENT_TARGET: 11.0
50+
MACOSX_DEPLOYMENT_TARGET: 11.0 # Required for building on macOS
4751
OP_SERVICE_ACCOUNT_TOKEN: ${{ secrets.TEST_SERVICE_ACCOUNT_TOKEN }}
4852
continue-on-error: true
4953
uses: pypa/[email protected]

0 commit comments

Comments
 (0)