Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update modules in wheel build #102

Merged
merged 2 commits into from
Aug 7, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 17 additions & 7 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
branches:
- main
tags:
- "py-core-v*"
- "py-v*"
workflow_dispatch:

permissions:
Expand All @@ -36,7 +36,8 @@ jobs:
target: ppc64le
module:
- arro3-core
# - arro3-compute
- arro3-compute
- arro3-io
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
Expand Down Expand Up @@ -66,7 +67,8 @@ jobs:
target: x86
module:
- arro3-core
# - arro3-compute
- arro3-compute
- arro3-io
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
Expand Down Expand Up @@ -96,7 +98,8 @@ jobs:
target: aarch64
module:
- arro3-core
# - arro3-compute
- arro3-compute
- arro3-io
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
Expand All @@ -120,7 +123,8 @@ jobs:
matrix:
module:
- arro3-core
# - arro3-compute
- arro3-compute
- arro3-io
steps:
- uses: actions/checkout@v4
- name: Build sdist
Expand All @@ -135,14 +139,20 @@ jobs:
path: dist

release:
runs-on: ubuntu-latest
strategy:
matrix:
module:
- arro3-core
- arro3-compute
- arro3-io
name: Release
environment:
name: release
url: https://pypi.org/p/arro3-core
url: https://pypi.org/p/${{ matrix.module }}
permissions:
# IMPORTANT: this permission is mandatory for trusted publishing
id-token: write
runs-on: ubuntu-latest
if: "startsWith(github.ref, 'refs/tags/')"
needs: [linux, windows, macos, sdist]
steps:
Expand Down