diff --git a/master/custom/factories.py b/master/custom/factories.py index e0ded339..eb8cb166 100644 --- a/master/custom/factories.py +++ b/master/custom/factories.py @@ -1316,12 +1316,16 @@ def setup(self, **kwargs): name="Compile build Python", command=android_py + ["make-build"], ), + PythonInfo( + name="Display build info of the build Python", + command=android_py + ["pythoninfo-build"], + ), Configure( - name="Configure host Python", + name="Configure host/Android Python", command=android_py + ["configure-host", self.host_triple], ), Compile( - name="Compile host Python", + name="Compile host/Android Python", command=android_py + ["make-host", self.host_triple], ), Test(