Summary: This is pretty dumb but hopefully good enough to prevent accidental regressions. We simply check if there are "enough" `libevent_core.so`s in the bundle. This is obviously not future-proof but it's super cheap to run and if it causes problems at some point, we can always remove it. Apologies for the formatting spam. Didn't notice until I submitted this that my editor got a little passive-aggressive. Pull Request resolved: https://github.com/facebook/flipper/pull/3436 Test Plan: CI here. Reviewed By: lblasa Differential Revision: D34210743 Pulled By: passy fbshipit-source-id: a57c397e39456fae33af9f3ceed08b6944eac79e
37 lines
1.1 KiB
YAML
37 lines
1.1 KiB
YAML
name: Build Android Sample App
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: set up JDK
|
|
uses: actions/setup-java@v1
|
|
with:
|
|
java-version: 11
|
|
- name: Compute build cache
|
|
run: ./scripts/checksum-android.sh checksum-android.txt
|
|
- uses: actions/cache@v2
|
|
with:
|
|
path: |
|
|
~/.gradle/caches/modules-*
|
|
~/.gradle/caches/jars-*
|
|
~/.gradle/caches/build-cache-*
|
|
key: gradle-${{ hashFiles('checksum-android.txt') }}
|
|
- name: Build debug artifact
|
|
run: ./gradlew :android:assembleDebug
|
|
- name: Verify libraries in artifact
|
|
run: scripts/verify-android-libraries.sh
|
|
- name: Build sample apps with Gradle
|
|
run: ./gradlew :sample:assembleDebug :tutorial:assembleDebug
|
|
- name: Build remaining artifacts with Gradle
|
|
run: ./gradlew assembleDebug
|
|
- name: upload artifact
|
|
uses: actions/upload-artifact@v1
|
|
with:
|
|
name: sample-app.apk
|
|
path: android/sample/build/outputs/apk/debug/sample-debug.apk
|