Skip to content

Commit e17c4db

Browse files
committed
Add pythoninfo-build step to AndroidBuild
Replace also "host Python" with "host/Android Python".
1 parent 2733039 commit e17c4db

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

master/custom/factories.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1316,12 +1316,16 @@ def setup(self, **kwargs):
13161316
name="Compile build Python",
13171317
command=android_py + ["make-build"],
13181318
),
1319+
PythonInfo(
1320+
name="Display build info of the build Python",
1321+
command=android_py + ["pythoninfo-build"],
1322+
),
13191323
Configure(
1320-
name="Configure host Python",
1324+
name="Configure host/Android Python",
13211325
command=android_py + ["configure-host", self.host_triple],
13221326
),
13231327
Compile(
1324-
name="Compile host Python",
1328+
name="Compile host/Android Python",
13251329
command=android_py + ["make-host", self.host_triple],
13261330
),
13271331
Test(

0 commit comments

Comments
 (0)