fix: drop logging bridge, leave for client apps #365
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
paths: | |
- '**/*' | |
workflow_dispatch: | |
workflow_call: | |
inputs: | |
test_data_branch: | |
type: string | |
description: The branch in sdk-test-data to target for testcase files | |
required: false | |
default: main | |
sdk_branch: | |
type: string | |
description: The branch of the SDK to test | |
required: false | |
env: | |
SDK_BRANCH_NAME: ${{ inputs.sdk_branch || github.head_ref || github.ref_name }} | |
TEST_DATA_BRANCH_NAME: ${{ inputs.test_data_branch || 'main' }} | |
ORG_GRADLE_PROJECT_ossrhUsername: ${{ secrets.OSSRH_USERNAME }} | |
ORG_GRADLE_PROJECT_ossrhPassword: ${{ secrets.OSSRH_PASSWORD }} | |
CI: true | |
jobs: | |
test-android-sdk: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
api-level: [26, 31, 34] | |
# Allow other tests to continue if one fails | |
fail-fast: false | |
name: Test API Level ${{ matrix.api-level }} | |
steps: | |
- name: Display Testing Details | |
run: | | |
echo "Running SDK Test using" | |
echo "Test Data: sdk-test-data@${TEST_DATA_BRANCH_NAME}" | |
echo "SDK Branch: android-sdk@${SDK_BRANCH_NAME}" | |
echo "API Level: ${{ matrix.api-level }}" | |
- name: Check out Java SDK | |
uses: actions/checkout@v4 | |
with: | |
repository: Eppo-exp/android-sdk | |
ref: ${{ env.SDK_BRANCH_NAME}} | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'adopt' | |
- name: Restore gradle.properties | |
shell: bash | |
run: | | |
mkdir -p ~/.gradle/ | |
echo "GRADLE_USER_HOME=${HOME}/.gradle" >> $GITHUB_ENV | |
- name: Set up test data | |
run: make test-data branchName=${{env.TEST_DATA_BRANCH_NAME}} | |
- name: Wait for mock UFC DNS to resolve | |
run: | | |
for i in {1..15} | |
do | |
ip=$(dig +short us-central1-eppo-prod-312905.cloudfunctions.net) | |
if [[ -n "$ip" ]]; then | |
echo "Domain resolved to $ip after $i seconds" | |
exit 0 | |
fi | |
sleep 1 | |
done | |
echo "Failed to resolve after 15 seconds" | |
exit 1 | |
- name: Enable KVM | |
run: | | |
echo 'KERNEL=="kvm", GROUP="kvm", MODE="0666", OPTIONS+="static_node=kvm"' | sudo tee /etc/udev/rules.d/99-kvm4all.rules | |
sudo udevadm control --reload-rules | |
sudo udevadm trigger --name-match=kvm | |
- name: Gradle cache | |
uses: gradle/actions/setup-gradle@v3 | |
- name: Run tests | |
run: ./gradlew check --no-daemon | |
- name: AVD cache | |
uses: actions/cache@v4 | |
id: avd-cache | |
with: | |
path: | | |
~/.android/avd/* | |
~/.android/adb* | |
key: avd-api-${{ matrix.api-level }}-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }} | |
- name: create AVD and generate snapshot for caching | |
if: steps.avd-cache.outputs.cache-hit != 'true' | |
uses: reactivecircus/android-emulator-runner@v2 | |
with: | |
api-level: ${{ matrix.api-level }} | |
target: google_apis | |
arch: x86_64 | |
force-avd-creation: false | |
emulator-options: -no-window -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none | |
disable-animations: false | |
script: echo "Generated AVD snapshot for caching." | |
- name: Spin up emulator and run tests | |
id: testing | |
uses: ReactiveCircus/android-emulator-runner@v2 | |
with: | |
api-level: ${{ matrix.api-level }} | |
target: google_apis | |
arch: x86_64 | |
force-avd-creation: false | |
emulator-options: -no-snapshot-save -no-window -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none -netdelay none -netspeed full -dns-server 8.8.8.8 | |
disable-animations: true | |
script: | | |
echo "Emulator started" | |
mkdir -p app/ # create directory | |
touch app/emulator.log # create log file | |
chmod 777 app/emulator.log # allow writing to log file | |
adb logcat | grep EppoSDK >> app/emulator.log & # pipe all logcat messages into log file as a background process | |
./gradlew connectedCheck --no-daemon # run tests | |
- name: Upload Emulator Logs | |
if: always() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: emulator-logs-api-level-${{ matrix.api-level }} | |
path: app/emulator.log | |
- name: Upload Test Report | |
if: always() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: report-api-level-${{ matrix.api-level }} | |
path: /Users/runner/work/android-sdk/android-sdk/eppo/build/reports/androidTests/connected/index.html |