Fix android e2e tests

This commit is contained in:
Diego Mello 2024-04-04 16:32:54 -03:00
parent 88f5cb40c2
commit 5ee4018af8
3 changed files with 18 additions and 21 deletions

View File

@ -4,11 +4,11 @@ defaults: &defaults
android-executor: &android-executor
executor:
name: android/android-machine
resource-class: xlarge
resource-class: large
tag: 2024.01.1
orbs:
android: circleci/android@2.1.2
android: circleci/android@2.5.0
macos: &macos
macos:
@ -474,10 +474,7 @@ jobs:
e2e-build-android:
<<: *defaults
executor:
name: android/android-machine
resource-class: large
tag: 2022.12.1
<<: *android-executor
environment:
<<: *android-env
steps:
@ -490,11 +487,11 @@ jobs:
name: Configure Gradle
command: |
echo -e "" > ./gradle.properties
# echo -e "android.enableAapt2=false" >> ./gradle.properties
echo -e "android.useAndroidX=true" >> ./gradle.properties
echo -e "android.enableJetifier=true" >> ./gradle.properties
echo -e "reactNativeArchitectures=armeabi-v7a,arm64-v8a,x86,x86_64" >> ./gradle.properties
echo -e "newArchEnabled=false" >> ./gradle.properties
echo -e "FLIPPER_VERSION=0.125.0" >> ./gradle.properties
echo -e "hermesEnabled=true" >> ./gradle.properties
echo -e "VERSIONCODE=$CIRCLE_BUILD_NUM" >> ./gradle.properties
echo -e "APPLICATION_ID=chat.rocket.reactnative" >> ./gradle.properties
echo -e "BugsnagAPIKey=$BUGSNAG_KEY" >> ./gradle.properties
@ -523,8 +520,8 @@ jobs:
<<: *defaults
executor:
name: android/android-machine
resource-class: large
tag: 2022.12.1
resource-class: xlarge
tag: 2024.01.1
parallelism: 4
steps:
- checkout
@ -536,15 +533,15 @@ jobs:
- run: mkdir ~/junit
- create-e2e-account-file
- android/create-avd:
avd-name: Pixel_API_31_AOSP
avd-name: Pixel_API_34_AOSP
install: true
system-image: system-images;android-31;default;x86_64
system-image: system-images;android-34;default;x86_64
- run:
name: Setup emulator
command: |
echo "hw.lcd.density = 440" >> ~/.android/avd/Pixel_API_31_AOSP.avd/config.ini
echo "hw.lcd.height = 2280" >> ~/.android/avd/Pixel_API_31_AOSP.avd/config.ini
echo "hw.lcd.width = 1080" >> ~/.android/avd/Pixel_API_31_AOSP.avd/config.ini
echo "hw.lcd.density = 440" >> ~/.android/avd/Pixel_API_34_AOSP.avd/config.ini
echo "hw.lcd.height = 2280" >> ~/.android/avd/Pixel_API_34_AOSP.avd/config.ini
echo "hw.lcd.width = 1080" >> ~/.android/avd/Pixel_API_34_AOSP.avd/config.ini
- run:
name: Run Detox Tests
command: |

View File

@ -57,7 +57,7 @@ module.exports = {
emulator: {
type: 'android.emulator',
device: {
avdName: 'Pixel_API_31_AOSP'
avdName: 'Pixel_API_34_AOSP'
},
headless: process.env.CI ? true : false
}

View File

@ -5,10 +5,10 @@ $ANDROID_HOME/cmdline-tools/latest/bin/sdkmanager --install emulator
$ANDROID_HOME/cmdline-tools/latest/bin/sdkmanager "system-images;android-31;default;arm64-v8a"
$ANDROID_HOME/cmdline-tools/latest/bin/sdkmanager --licenses
$ANDROID_HOME/cmdline-tools/latest/bin/avdmanager create avd -n Pixel_API_31_AOSP -d pixel --package "system-images;android-31;default;arm64-v8a"
$ANDROID_HOME/cmdline-tools/latest/bin/avdmanager create avd -n Pixel_API_34_AOSP -d pixel --package "system-images;android-31;default;arm64-v8a"
echo "hw.lcd.density = 440" >> ~/.android/avd/Pixel_API_31_AOSP.avd/config.ini
echo "hw.lcd.height = 2280" >> ~/.android/avd/Pixel_API_31_AOSP.avd/config.ini
echo "hw.lcd.width = 1080" >> ~/.android/avd/Pixel_API_31_AOSP.avd/config.ini
echo "hw.lcd.density = 440" >> ~/.android/avd/Pixel_API_34_AOSP.avd/config.ini
echo "hw.lcd.height = 2280" >> ~/.android/avd/Pixel_API_34_AOSP.avd/config.ini
echo "hw.lcd.width = 1080" >> ~/.android/avd/Pixel_API_34_AOSP.avd/config.ini
echo "Pixel_API_31_AOSP created"
echo "Pixel_API_34_AOSP created"