Skip to content

Commit 3ef4134

Browse files
committed
feat(INFRA-2766): pwetty
1 parent d2a4676 commit 3ef4134

1 file changed

Lines changed: 9 additions & 9 deletions

File tree

.github/actions/setup-e2e-env/action.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ runs:
235235
libglu1-mesa \
236236
libnss3 \
237237
libxss1
238-
238+
239239
echo "✅ Linux dependencies installed successfully"
240240
shell: bash
241241

@@ -255,7 +255,7 @@ runs:
255255
256256
echo "Updating SDK packages..."
257257
"${ANDROID_HOME}/cmdline-tools/latest/bin/sdkmanager" --update
258-
258+
259259
echo "✅ Android SDK packages installed successfully"
260260
shell: bash
261261

@@ -332,20 +332,20 @@ runs:
332332
if: ${{ inputs.platform == 'android' && inputs.setup-simulator == 'true' }}
333333
run: |
334334
echo "Waiting for emulator to be ready on $RUNNER_OS..."
335-
335+
336336
# Wait for device to be detected by ADB
337337
echo "Waiting for ADB to detect device..."
338338
adb wait-for-device
339-
339+
340340
# Additional wait for emulator to stabilize
341341
sleep 10
342-
342+
343343
# Check emulator status
344344
echo "Checking emulator processes..."
345345
if [ "$RUNNER_OS" = "Linux" ]; then
346346
ps aux | grep emulator || echo "No emulator processes found"
347347
fi
348-
348+
349349
# Wait for boot to complete
350350
bootanim=""
351351
timeout=600 # 10 minutes for initial boot (Linux might be slower)
@@ -375,12 +375,12 @@ runs:
375375
done
376376
377377
echo "❌ Timeout waiting for emulator to boot"
378-
378+
379379
# Debug information on failure
380380
echo "Debug: ADB devices:"
381381
adb devices
382382
echo "Debug: Emulator processes:"
383383
ps aux | grep emulator || echo "No emulator processes found"
384-
384+
385385
exit 1
386-
shell: bash
386+
shell: bash

0 commit comments

Comments
 (0)