CircleCi emulator64-arm: command not found

五迷三道 提交于 2020-08-07 10:44:07

问题


I try to launch my instrumentation test in Circle Ci. I have this following code :

test_ui:
<<: *build_environment
docker:
- image: circleci/android:api-27
steps:
  - checkout
  - *sdk_license_agreements
  - run:
      name: Setup emulator
      command: sdkmanager "system-images;android-22;default;armeabi-v7a" && echo "no" | avdmanager create avd -n test -k "system-images;android-22;default;armeabi-v7a"
  - run:
      name: Launch emulator
      command: export LD_LIBRARY_PATH=${ANDROID_HOME}/emulator/lib64:${ANDROID_HOME}/emulator/lib64/qt/lib && emulator64-arm -avd test -noaudio -no-boot-anim -no-window -accel on
      background: true
  - run:
      name: Run Ui Tests
      command: ./gradlew connectedciDebugAndroidTest

And I have this following error on my Launch emulator :

emulator64-arm: command not found

Do you have any idea?

来源:https://stackoverflow.com/questions/60434954/circleci-emulator64-arm-command-not-found

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!