Skip to content

Commit 197e7ef

Browse files
committed
Update to use new CI script
1 parent 6efd5ac commit 197e7ef

File tree

2 files changed

+13
-6
lines changed

2 files changed

+13
-6
lines changed

.github/workflows/build-release.yml

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,9 @@ permissions: {}
4141

4242
# Set from inputs for workflow_dispatch, or set defaults to test push/PR events
4343
env:
44-
GIT_REMOTE: ${{ github.event.inputs.git_remote || 'python' }}
45-
GIT_COMMIT: ${{ github.event.inputs.git_commit || '4f8bb3947cfbc20f970ff9d9531e1132a9e95396' }}
46-
CPYTHON_RELEASE: ${{ github.event.inputs.cpython_release || '3.13.2' }}
44+
GIT_REMOTE: ${{ github.event.inputs.git_remote || 'mhsmith' }}
45+
GIT_COMMIT: ${{ github.event.inputs.git_commit || 'c9700e47b6bf98f6ca2e60ecdbee15ba228dcc7c' }}
46+
CPYTHON_RELEASE: ${{ github.event.inputs.cpython_release || '3.15.992' }}
4747

4848
jobs:
4949
verify-input:
@@ -209,6 +209,8 @@ jobs:
209209
runs-on: ubuntu-24.04
210210

211211
runs-on: ${{ matrix.runs-on }}
212+
env:
213+
triplet: ${{ matrix.arch }}-linux-android
212214
steps:
213215
- name: "Checkout ${{ env.GIT_REMOTE }}/cpython"
214216
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
@@ -217,6 +219,11 @@ jobs:
217219
repository: "${{ env.GIT_REMOTE }}/cpython"
218220
ref: "v${{ env.CPYTHON_RELEASE }}"
219221

220-
- uses: ./.github/actions/build-android
222+
- name: Build and test
223+
run: ./Android/android.py ci "$triplet"
224+
225+
- uses: actions/upload-artifact@v4
221226
with:
222-
triplet: ${{ matrix.arch }}-linux-android
227+
name: ${{ env.triplet }}
228+
path: cross-build/${{ env.triplet }}/dist/*
229+
if-no-files-found: error

add_to_pydotorg.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env python
22
"""
33
Script to add ReleaseFile objects for Python releases on the new pydotorg.
4-
To use (RELEASE is something like 3.3.5rc2):
4+
To use (RELEASE is the full Python version number):
55
66
* Copy this script to dl-files (it needs access to all the release files).
77
You could also download all files, then you need to use the "--ftp-root"

0 commit comments

Comments
 (0)