github: restructure CI test setup

Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
This commit is contained in:
Harsh Shandilya 2021-03-16 15:11:27 +05:30
parent ddc504eb05
commit ede879c550
No known key found for this signature in database
GPG key ID: 366D7BBAD1031E80
4 changed files with 68 additions and 11 deletions

View file

@ -7,7 +7,7 @@ on:
- trying - trying
jobs: jobs:
test-pr: run-screenshot-tests:
runs-on: macOS-latest runs-on: macOS-latest
steps: steps:
@ -21,14 +21,44 @@ jobs:
- name: Copy CI gradle.properties - name: Copy CI gradle.properties
run: mkdir -p ~/.gradle ; cp .github/ci-gradle.properties ~/.gradle/gradle.properties run: mkdir -p ~/.gradle ; cp .github/ci-gradle.properties ~/.gradle/gradle.properties
- name: Run unit and instrumentation tests - name: Boot emulator manually
uses: reactivecircus/android-emulator-runner@d2799957d660add41c61a5103e2fbb9e2889eb73 run: |
with: ./scripts/setup_environment.sh
api-level: 30 ./scripts/boot_emulator.sh &
target: google_apis until [ "$(adb shell getprop sys.boot_completed)" == "1" ]
profile: pixel_xl do sleep 5
script: | done
./gradlew test executeScreenshotTests --stacktrace
- uses: burrunan/gradle-cache-action@03c71a8ba93d670980695505f48f49daf43704a6
name: Run screenshot tests
with:
arguments: executeScreenshotTests --stacktrace
- name: (Fail-only) upload test report
if: failure()
uses: actions/upload-artifact@27bce4eee761b5bc643f46a8dfb41b430c8d05f6
with:
name: Test report
path: app/build/reports
run-unit-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-java@d202f5dbf7256730fb690ec59f6381650114feb2
with:
java-version: '11'
- name: Checkout repository
uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f
- name: Copy CI gradle.properties
run: mkdir -p ~/.gradle ; cp .github/ci-gradle.properties ~/.gradle/gradle.properties
- uses: burrunan/gradle-cache-action@03c71a8ba93d670980695505f48f49daf43704a6
name: Run unit tests
with:
arguments: test --stacktrace
- name: (Fail-only) upload test report - name: (Fail-only) upload test report
if: failure() if: failure()

View file

@ -1,3 +1,4 @@
status = [ status = [
"test-pr" "run-screenshot-tests",
"run-unit-tests"
] ]

View file

@ -7,12 +7,13 @@ set -euxo pipefail
[ -n "${ANDROID_SDK_ROOT}" ] || { echo "ANDROID_SDK_ROOT must be set to use this script"; exit 1; } [ -n "${ANDROID_SDK_ROOT}" ] || { echo "ANDROID_SDK_ROOT must be set to use this script"; exit 1; }
"${ANDROID_SDK_ROOT}"/cmdline-tools/latest/bin/avdmanager create avd \ echo no | "${ANDROID_SDK_ROOT}"/cmdline-tools/latest/bin/avdmanager create avd \
--force \ --force \
-n Pixel_XL_API_30 \ -n Pixel_XL_API_30 \
--abi 'google_apis/x86' \ --abi 'google_apis/x86' \
--package 'system-images;android-30;google_apis;x86' \ --package 'system-images;android-30;google_apis;x86' \
--device 'pixel_xl' --device 'pixel_xl'
"${ANDROID_SDK_ROOT}"/emulator/emulator \ "${ANDROID_SDK_ROOT}"/emulator/emulator \
-avd Pixel_XL_API_30 \ -avd Pixel_XL_API_30 \
-no-window \ -no-window \

25
scripts/setup_environment.sh Executable file
View file

@ -0,0 +1,25 @@
#!/usr/bin/env bash
set -euxo pipefail
CMDLINE_TOOLS_URL_MAC="https://dl.google.com/android/repository/commandlinetools-mac-6858069_latest.zip"
CMDLINE_TOOLS_URL_LINUX="https://dl.google.com/android/repository/commandlinetools-linux-6858069_latest.zip"
if [ "$(uname)" == "Linux" ]; then
wget "${CMDLINE_TOOLS_URL_LINUX}" -O /tmp/tools.zip -o /dev/null
elif [ "$(uname)" == "Darwin" ]; then
wget "${CMDLINE_TOOLS_URL_MAC}" -O /tmp/tools.zip -o /dev/null
else
echo "This script only works on Linux and Mac"
exit 1
fi
unzip -qo /tmp/tools.zip -d "${ANDROID_SDK_ROOT}/latest"
mkdir -p "${ANDROID_SDK_ROOT}/cmdline-tools"
mv -v "${ANDROID_SDK_ROOT}/latest/cmdline-tools" "${ANDROID_SDK_ROOT}/cmdline-tools/latest"
export PATH="${ANDROID_SDK_ROOT}/cmdline-tools/latest/bin:${PATH}"
sdkmanager --install 'build-tools;30.0.3' platform-tools 'platforms;android-30'
sdkmanager --install emulator
sdkmanager --install 'system-images;android-30;google_apis;x86'