<./ci/android-wait-for-emulator.sh: No such file o...
# stackoverflow
u
./ci/android-wait-for-emulator.sh: No such file or directory I got a gitlab-ci yaml with a build stage and a test stage. The build stage runs successfully but the test stage keeps trowing the next error:

https://i.stack.imgur.com/DE0yj.png

gitlab-ci: image: jangrewe/gitlab-ci-android stages: - build - test - export GRADLE_USER_HOME=$(pwd)/.gradle - chmod +x ./gradlewbefore_script: cache: key: ${CI_PROJECT_ID} paths: - .gradle/ build: stage: build script: - ./gradlew assembleDebug artifacts:...