diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 649f66a4d82..600be396d4d 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -129,7 +129,7 @@ jobs: name: Android needs: ["decision"] if: ${{ contains(fromJson(needs.decision.outputs.configuration).platforms, 'android') }} - uses: ./.github/workflows/linux.yml + uses: ./.github/workflows/android.yml with: profile: "release" secrets: inherit 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