flycast/shell/android-studio/travis-build.sh

8 lines
164 B
Bash
Executable File

#!/bin/bash
set -ev
if [ "${TRAVIS_PULL_REQUEST}" = "false" ]; then
./gradlew build --configure-on-demand
else
./gradlew assembleDebug --configure-on-demand
fi