xref: /aosp_15_r20/external/gemmlowp/scripts/ci-before.sh (revision 5f39d1b313f0528e11bae88b3029b54b9e1033e7)
1#!/bin/bash
2if [ $TEST == "arm" ]; then
3  curl -L https://dl.google.com/android/repository/android-ndk-${NDK_VERSION}-linux-x86_64.zip -O
4  unzip android-ndk-${NDK_VERSION}-linux-x86_64.zip 2> /dev/null > /dev/null
5  echo no | android create avd --force -n test -t android-22 --abi armeabi-v7a
6  emulator -avd test -no-audio -no-window &
7fi
8