diff options
author | Mukilan Thiyagarajan <mukilan@igalia.com> | 2024-01-23 11:07:33 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-23 05:37:33 +0000 |
commit | cf5d9c7a28a11e6780b0dc69e9d8dc562cc724f6 (patch) | |
tree | 46ebdb53f80c136679b1712ff85ee68271f3cab2 /python | |
parent | 33500ed05fddd8d2985815b61d0f61b237b98b57 (diff) | |
download | servo-cf5d9c7a28a11e6780b0dc69e9d8dc562cc724f6.tar.gz servo-cf5d9c7a28a11e6780b0dc69e9d8dc562cc724f6.zip |
ci: fix reference to android job filename in main.yml (#31150)
* ci: fix reference to android job filename in main.yml
* mach: fix build command to handle android
The refactoring done in PR #31092 introduced the call to
get_binary_path in the unconditional path, but did not
pass the android flag to the call.
Signed-off-by: Mukilan Thiyagarajan <mukilan@igalia.com>
---------
Signed-off-by: Mukilan Thiyagarajan <mukilan@igalia.com>
Diffstat (limited to 'python')
-rw-r--r-- | python/servo/build_commands.py | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/python/servo/build_commands.py b/python/servo/build_commands.py index dd63aff54f3..afed8dbc5c2 100644 --- a/python/servo/build_commands.py +++ b/python/servo/build_commands.py @@ -104,7 +104,13 @@ class MachCommands(CommandBase): ) # Do some additional things if the build succeeded - built_binary = self.get_binary_path(build_type, target=self.cross_compile_target, simpleservo=libsimpleservo) + built_binary = self.get_binary_path( + build_type, + target=self.cross_compile_target, + android=self.is_android_build, + simpleservo=libsimpleservo + ) + if status == 0: if self.is_android_build and not no_package: flavor = None |