Skip to content
Merged
Show file tree
Hide file tree
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
9 changes: 5 additions & 4 deletions .github/workflows/build-linux-aarch64-wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,11 @@ jobs:
dnf install -y /usr/bin/patch
- name: Checkout
uses: actions/checkout@main
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: 3.12
- name: Build wheels
run: |
python3 -m venv wheelbuilder_venv
export PIP_EXTRA_INDEX_URL=https://pypi.org/simple
wheelbuilder_venv/bin/python3 scripts/wheelbuilder/build_wheels.py ${{ inputs.graalpy_url }}
- name: Build wheels
run: python3 scripts/wheelbuilder/build_wheels.py ${{ inputs.graalpy_url }}
- name: Store wheels
Expand Down
15 changes: 6 additions & 9 deletions .github/workflows/build-linux-amd64-wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,8 @@ name: build-linux-amd64-wheels
jobs:
build_wheels:
runs-on:
- self-hosted
- Linux
- ARM64
container: quay.io/pypa/manylinux_2_28_amd64
- ubuntu-latest
container: quay.io/pypa/manylinux_2_28_x86_64
env:
PACKAGES_TO_BUILD: ${{ inputs.packages }}
steps:
Expand All @@ -29,12 +27,11 @@ jobs:
dnf install -y /usr/bin/patch
- name: Checkout
uses: actions/checkout@main
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: 3.12
- name: Build wheels
run: python3 scripts/wheelbuilder/build_wheels.py ${{ inputs.graalpy_url }}
run: |
python3 -m venv wheelbuilder_venv
export PIP_EXTRA_INDEX_URL=https://pypi.org/simple
wheelbuilder_venv/bin/python3 scripts/wheelbuilder/build_wheels.py ${{ inputs.graalpy_url }}
- name: Store wheels
uses: actions/upload-artifact@main
with:
Expand Down
8 changes: 5 additions & 3 deletions .github/workflows/build-macos-aarch64-wheels.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: build-macos-amd64-wheels
name: build-macos-aarch64-wheels
'on':
workflow_dispatch:
inputs:
Expand All @@ -12,7 +12,7 @@ name: build-macos-amd64-wheels
required: true
jobs:
build_wheels:
runs-on: macos-12
runs-on: macos-latest
env:
PACKAGES_TO_BUILD: ${{ inputs.packages }}
steps:
Expand All @@ -23,7 +23,9 @@ jobs:
with:
python-version: 3.12
- name: Build wheels
run: python3 scripts/wheelbuilder/build_wheels.py ${{ inputs.graalpy_url }}
run: |
export PIP_EXTRA_INDEX_URL=https://pypi.org/simple
python3 scripts/wheelbuilder/build_wheels.py ${{ inputs.graalpy_url }}
- name: Store wheels
uses: actions/upload-artifact@main
with:
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/build-macos-amd64-wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@ jobs:
with:
python-version: 3.12
- name: Build wheels
run: python3 scripts/wheelbuilder/build_wheels.py ${{ inputs.graalpy_url }}
run: |
export PIP_EXTRA_INDEX_URL=https://pypi.org/simple
python3 scripts/wheelbuilder/build_wheels.py ${{ inputs.graalpy_url }}
- name: Store wheels
uses: actions/upload-artifact@main
with:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/build-windows-amd64-wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ jobs:
- name: Build wheels
run: |
$env:PATH+=";C:\Program Files\Git\usr\bin"
$env:PIP_EXTRA_INDEX_URL="https://pypi.org/simple"
python3 scripts/wheelbuilder/build_wheels.py ${{ inputs.graalpy_url }}
- name: Store wheels
uses: actions/upload-artifact@main
Expand Down