fix: crash when no browser available (WPB-9436) #11278
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: "Run UI Tests" | |
on: | |
merge_group: | |
push: | |
branches: | |
- develop | |
- release/candidate | |
- prod | |
- internal | |
- main | |
pull_request: | |
types: [ opened, synchronize ] # Don't rerun on `edited` to save time | |
branches: | |
- develop | |
- release/candidate | |
- prod | |
- internal | |
- main | |
workflow_call: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number }} | |
cancel-in-progress: true | |
jobs: | |
ui-tests: | |
runs-on: buildjet-8vcpu-ubuntu-2204 | |
strategy: | |
matrix: | |
api-level: [ 29 ] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive # Needed in order to fetch Kalium sources for building | |
fetch-depth: 0 | |
- name: Set up JDK 17 | |
uses: buildjet/setup-java@v4 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
cache: gradle | |
- name: Validate Gradle wrapper | |
uses: gradle/actions/wrapper-validation@v3 | |
- name: AVD cache | |
uses: buildjet/cache@v4 | |
id: avd-cache | |
with: | |
path: | | |
~/.android/avd/* | |
~/.android/adb* | |
key: avd-${{ matrix.api-level }} | |
- 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: true | |
script: echo "Generated AVD snapshot for caching." | |
- name: Android Instrumentation Tests | |
uses: reactivecircus/android-emulator-runner@v2 | |
with: | |
api-level: ${{ matrix.api-level }} | |
target: google_apis | |
script: ./gradlew runAcceptanceTests | |
env: | |
GITHUB_USER: ${{ github.actor }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Get commit hash | |
run: echo "COMMIT_HASH=$(git rev-parse HEAD)" >> $GITHUB_ENV | |
- name: Copy test results to simplified directory | |
run: | | |
mkdir -p acceptanceTests/flavors | |
cp -r app/build/reports/androidTests/connected/debug/flavors/* acceptanceTests/flavors/ | |
- name: Zip test results | |
run: | | |
zip -r integration-tests-android_${{ env.COMMIT_HASH }}.zip acceptanceTests/flavors/ | |
- name: Upload zipped test results | |
uses: actions/upload-artifact@v4 | |
with: | |
name: integration-tests-android_${{ env.COMMIT_HASH }} | |
path: integration-tests-android_${{ env.COMMIT_HASH }}.zip | |
- name: Cleanup Gradle Cache | |
# Remove some files from the Gradle cache, so they aren't cached by GitHub Actions. | |
# Restoring these files from a GitHub Actions cache might cause problems for future builds. | |
run: | | |
rm -f ~/.gradle/caches/modules-2/modules-2.lock | |
rm -f ~/.gradle/caches/modules-2/gc.properties |