Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
mayantaylor committed Aug 5, 2024
2 parents f5927b4 + 2fca5b1 commit 0550607
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/build_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ jobs:
matrix:
# macos-13 is an intel runner, macos-14 is apple silicon
os: [ubuntu-latest, macos-13, macos-14]
os: [ubuntu-latest, macos-13, macos-14]

steps:
- uses: actions/setup-python@v5
Expand All @@ -30,6 +31,16 @@ jobs:
with:
fetch-depth: 0 # Fetch full history, necessary for git describe in setup.py

- name: Checkout charm_src # is this best practice? should we use a submodule?
uses: actions/checkout@v4
with:
repository: charmplusplus/charm
token: ${{ secrets.GITHUB_TOKEN }}
path: charm_src/charm
fetch-depth: 0 # Fetch full history, necessary for commit_str parsing in setup.py
with:
fetch-depth: 0 # Fetch full history, necessary for git describe in setup.py

- name: Checkout charm_src # is this best practice? should we use a submodule?
uses: actions/checkout@v4
with:
Expand All @@ -39,6 +50,8 @@ jobs:
fetch-depth: 0 # Fetch full history, necessary for commit_str parsing in setup.py

- name: Build wheels
env:
CIBW_SKIP: "pp* *-manylinux_i686 *-manylinux_ppc64le *-manylinux_s390x *musllinux_*"
env:
CIBW_SKIP: "pp* *-manylinux_i686 *-manylinux_ppc64le *-manylinux_s390x *musllinux_*"
uses: pypa/[email protected]
Expand Down

0 comments on commit 0550607

Please sign in to comment.