From 677d82d818abcdf9f58f15d652f3a4c7e3ff53b0 Mon Sep 17 00:00:00 2001 From: Riccardo Cipolleschi Date: Fri, 22 Nov 2024 05:14:22 -0800 Subject: [PATCH] Disable E2E Tests on RNTester (#47903) Summary: E2E tests for Android RNTester in GHA are flaky and they prevent CI to be green on main. Given that the Branch cut is happening on Monday and that I'll be away for a week, it's better to disable them. I'm planning to work a bit on those today and more once I'm back ## Changelog: [Internal] - Temporarily disable E2E tests for Android Pull Request resolved: https://github.com/facebook/react-native/pull/47903 Test Plan: GHA Reviewed By: javache Differential Revision: D66359177 Pulled By: cipolleschi fbshipit-source-id: a0064418af607953cf46445613796c18fb6e1389 --- .github/workflows/test-all.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test-all.yml b/.github/workflows/test-all.yml index d06893bc607..6511d7dab53 100644 --- a/.github/workflows/test-all.yml +++ b/.github/workflows/test-all.yml @@ -421,7 +421,9 @@ jobs: run-e2e-tests: ${{ github.ref == 'refs/heads/main' || contains(github.ref, 'stable') || inputs.run-e2e-tests }} test_e2e_android_rntester: - if: ${{ github.ref == 'refs/heads/main' || contains(github.ref, 'stable') || inputs.run-e2e-tests }} + # Temporarily disable RNTester tests on Android as they are quite flaky and they make CI always red + # if: ${{ github.ref == 'refs/heads/main' || contains(github.ref, 'stable') || inputs.run-e2e-tests }} + if: ${{ contains(github.ref, 'stable') || inputs.run-e2e-tests }} runs-on: ubuntu-latest needs: [build_android] strategy: