-
Notifications
You must be signed in to change notification settings - Fork 413
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
chore: update runs-on value in python_release.yml #1940
Conversation
ACTION NEEDED delta-rs follows the Conventional Commits specification for release automation. The PR title and description are used as the merge commit message. Please update your PR title and description to match the specification. |
# We use extra recent Cargo.toml syntax, so we need at least Rust 1.71.0 | ||
- name: Install newer rust | ||
uses: actions-rs/toolchain@v1 | ||
with: | ||
profile: default | ||
toolchain: stable | ||
override: true | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Newer runner has Rust 1.73.0: https://github.com/actions/runner-images/blob/main/images/macos/macos-12-Readme.md#rust-tools
- name: Publish to pypi (without sdist) | ||
uses: messense/maturin-action@v1 | ||
env: | ||
MATURIN_PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }} | ||
with: | ||
target: ${{ matrix.target }} | ||
command: publish | ||
args: -m python/Cargo.toml --no-sdist ${{ env.FEATURES_FLAG }} | ||
|
||
release-pypi-mac-universal2: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't think anyone really has need for this.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What are those feature flags setting there?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You mean this?
delta-rs/.github/workflows/python_release.yml
Lines 12 to 14 in 573cbd1
# For ease of development, we make rustls default. But for release we should | |
# use native TLS. | |
FEATURES_FLAG: --no-default-features --features native-tls |
Description
Latest Python release had a bunch of failures: https://github.com/delta-io/delta-rs/actions/runs/7095801050
Also doing some general cleanup.
TODO:
Related Issue(s)
Documentation