File: ci-before.sh

package info (click to toggle)
gemmlowp 0.0~git20211220.e844ffd-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 5,752 kB
  • sloc: cpp: 113,898; ansic: 9,221; python: 3,251; sh: 79; objc: 55; makefile: 16
file content (7 lines) | stat: -rwxr-xr-x 341 bytes parent folder | download | duplicates (17)
1
2
3
4
5
6
7
#!/bin/bash
if [ $TEST == "arm" ]; then
  curl -L https://dl.google.com/android/repository/android-ndk-${NDK_VERSION}-linux-x86_64.zip -O
  unzip android-ndk-${NDK_VERSION}-linux-x86_64.zip 2> /dev/null > /dev/null
  echo no | android create avd --force -n test -t android-22 --abi armeabi-v7a
  emulator -avd test -no-audio -no-window &
fi