Skip to content

Get CI/CD Working

Get CI/CD Working #12

Workflow file for this run

name: Test SDKs
on:
push:
branches:
- main
pull_request:
paths:
- '**/*'
jobs:
test-android-sdk:
runs-on: macos-latest
env:
ANDROID_API_LEVEL: 33
steps:
- name: Check out Java SDK
uses: actions/checkout@v3
with:
repository: 'Eppo-exp/android-sdk'
- name: Set up JDK 11
uses: actions/setup-java@v3
with:
java-version: '11'
distribution: 'adopt'
- name: 'Set up GCP SDK'
uses: 'google-github-actions/setup-gcloud@v0'
- name: Restore gradle.properties
env:
MAVEN_USERNAME: ${{ secrets.MAVEN_USERNAME }} #TODO: populate
MAVEN_PASSWORD: ${{ secrets.MAVEN_PASSWORD }} #TODO: populate
shell: bash
run: |
mkdir -p ~/.gradle/
echo "GRADLE_USER_HOME=${HOME}/.gradle" >> $GITHUB_ENV
echo "MAVEN_USERNAME=${MAVEN_USERNAME}" > ~/.gradle/gradle.properties
echo "MAVEN_PASSWORD=${MAVEN_PASSWORD}" >> ~/.gradle/gradle.properties
- name: Set up test data
run: make test-data
- name: Spin up emulator
uses: ReactiveCircus/android-emulator-runner@v2
with:
api-level: 33
target: google_apis
arch: x86_64
script: |
echo "Emulator started"
adb reverse tcp:4001 tcp:4001
echo "Waiting for emulator to boot"
timeout=300 # 5 minutes
counter=0
while [[ -z $(adb shell getprop sys.boot_completed | tr -d '\r') ]]; do
if [ $counter -ge $timeout ]; then
echo "Timeout waiting for emulator to boot"
exit 1
fi
counter=$((counter + 1))
sleep 1
done
echo "Emulator shell ready"
make test