@@ -41,9 +41,9 @@ permissions: {}
4141
4242# Set from inputs for workflow_dispatch, or set defaults to test push/PR events
4343env :
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
4848jobs :
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
0 commit comments