chore: adjust heap without any popping or pushing. #1769
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Bindings Python | |
on: | |
pull_request: | |
branches: | |
- main | |
paths: | |
- "src/**" | |
workflow_call: | |
inputs: | |
tag: | |
description: The tag to release | |
required: true | |
type: string | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name }} | |
cancel-in-progress: true | |
env: | |
RUNNER_PROVIDER: github | |
jobs: | |
build_linux: | |
name: build-${{ matrix.target }} | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
target: | |
- x86_64-unknown-linux-gnu | |
steps: | |
- name: Free Disk Space (Ubuntu) | |
uses: jlumbroso/free-disk-space@main | |
with: | |
# this might remove tools that are actually needed, | |
# if set to "true" but frees about 6 GB | |
tool-cache: false | |
# all of these default to true, but feel free to set to | |
# "false" if necessary for your workflow | |
android: true | |
dotnet: true | |
haskell: true | |
large-packages: false | |
docker-images: true | |
swap-storage: true | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: ./.github/actions/build_bindings_python | |
with: | |
target: ${{ matrix.target }} | |
version: ${{ inputs.tag }} | |
build_macos: | |
name: build-${{ matrix.target }} | |
if: github.event_name != 'pull_request' | |
runs-on: macos-11 | |
strategy: | |
matrix: | |
target: | |
- x86_64-apple-darwin | |
- aarch64-apple-darwin | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: ./.github/actions/build_bindings_python | |
with: | |
target: ${{ matrix.target }} | |
version: ${{ inputs.tag }} | |
release: | |
# publish release only the version endsWith 0 | |
# if: endsWith(inputs.tag, '0') | |
if: inputs.tag | |
name: Publish to PyPI | |
needs: [build_linux, build_macos] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/download-artifact@v3 | |
- name: Publish to PyPI | |
uses: pypa/gh-action-pypi-publish@release/v1 | |
with: | |
password: ${{ secrets.pypi_password }} | |
skip-existing: true |