-
-
Notifications
You must be signed in to change notification settings - Fork 162
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3293 from pygame-community/ankith26-drop-circleci
Drop circleci, use gh actions for arm manylinux
- Loading branch information
Showing
6 changed files
with
4 additions
and
229 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -38,15 +38,15 @@ concurrency: | |
jobs: | ||
build: | ||
name: ${{ matrix.arch }} | ||
runs-on: ubuntu-24.04 | ||
runs-on: ${{ matrix.arch == 'aarch64' && 'ubuntu-24.04-arm' || 'ubuntu-24.04' }} | ||
permissions: | ||
contents: read | ||
packages: write | ||
|
||
strategy: | ||
fail-fast: false # if a particular matrix build fails, don't skip the rest | ||
matrix: | ||
arch: [x86_64, i686] | ||
arch: [x86_64, i686, aarch64] | ||
|
||
env: | ||
CIBW_ARCHS: ${{ matrix.arch }} | ||
|
@@ -90,6 +90,8 @@ jobs: | |
CIBW_MANYLINUX_PYPY_X86_64_IMAGE: ghcr.io/${{ github.repository }}_x86_64:${{ steps.meta.outputs.version }} | ||
CIBW_MANYLINUX_I686_IMAGE: ghcr.io/${{ github.repository }}_i686:${{ steps.meta.outputs.version }} | ||
CIBW_MANYLINUX_PYPY_I686_IMAGE: ghcr.io/${{ github.repository }}_i686:${{ steps.meta.outputs.version }} | ||
CIBW_MANYLINUX_AARCH64_IMAGE: ghcr.io/${{ github.repository }}_aarch64:${{ steps.meta.outputs.version }} | ||
CIBW_MANYLINUX_PYPY_AARCH64_IMAGE: ghcr.io/${{ github.repository }}_aarch64:${{ steps.meta.outputs.version }} | ||
|
||
uses: pypa/[email protected] | ||
|
||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,18 +5,6 @@ on: | |
branches: 'release/**' | ||
|
||
jobs: | ||
manylinux-aarch64: | ||
runs-on: ubuntu-latest | ||
outputs: | ||
pipeline_id: ${{ steps.circleci.outputs.id }} | ||
|
||
steps: | ||
- name: Trigger CircleCI builds on release | ||
id: circleci | ||
uses: CircleCI-Public/[email protected] | ||
env: | ||
CCI_TOKEN: ${{ secrets.CCI_TOKEN }} | ||
|
||
manylinux: | ||
uses: ./.github/workflows/build-manylinux.yml | ||
|
||
|
@@ -46,14 +34,6 @@ jobs: | |
path: pygame-wheels | ||
merge-multiple: true | ||
|
||
- name: Download manylinux-aarch64 artifacts from CircleCI | ||
continue-on-error: true # incase things don't work here, can manually handle it | ||
run: > | ||
python3 buildconfig/ci/circleci/pull_circleci_artifacts.py | ||
${{ secrets.CCI_TOKEN }} | ||
${{ needs.manylinux-aarch64.outputs.pipeline_id }} | ||
pygame-wheels | ||
# Strips 'release/' from the ref_name, this helps us access the version | ||
# name as 'steps.ver.outputs.VER' | ||
- name: Get version | ||
|
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
This file was deleted.
Oops, something went wrong.