mirror of
https://github.com/FirebirdSQL/firebird.git
synced 2025-01-23 10:03:03 +01:00
84a0168870
Add GitHub action to run second phase in MacOS machine, where Android emulator can run. Currently this is done for ARM 32/64 builds.
7 lines
217 B
Bash
Executable File
7 lines
217 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
|
|
$ANDROID_HOME/emulator/emulator -no-window -avd firebird-builder -port 5554 &
|
|
$ANDROID_HOME/platform-tools/adb wait-for-device -s emulator-5554
|
|
$ANDROID_HOME/platform-tools/adb -s emulator-5554 root
|