From e9038576d89105783abfb9c68a84b5868e126cf3 Mon Sep 17 00:00:00 2001 From: Andrew Gable Date: Mon, 25 Sep 2023 13:40:48 +0800 Subject: [PATCH] Remove tmate, adjust file path --- .github/workflows/e2ePerformanceTests.yml | 12 ------------ fastlane/Fastfile | 2 +- 2 files changed, 1 insertion(+), 13 deletions(-) diff --git a/.github/workflows/e2ePerformanceTests.yml b/.github/workflows/e2ePerformanceTests.yml index 5dbef071c720..f7f1e5fc7ac7 100644 --- a/.github/workflows/e2ePerformanceTests.yml +++ b/.github/workflows/e2ePerformanceTests.yml @@ -55,12 +55,6 @@ jobs: with: ARTIFACT_NAME: baseline-apk-${{ steps.getMostRecentRelease.outputs.VERSION }} - - name: Setup tmate session - if: ${{ failure() }} - uses: mxschmitt/action-tmate@v3 - with: - limit-access-to-actor: true - buildDelta: runs-on: ubuntu-latest-xl name: Build apk from delta ref @@ -124,12 +118,6 @@ jobs: with: ARTIFACT_NAME: delta-apk-${{ steps.getDeltaRef.outputs.DELTA_REF }} - - name: Setup tmate session - if: ${{ failure() }} - uses: mxschmitt/action-tmate@v3 - with: - limit-access-to-actor: true - runTestsInAWS: runs-on: ubuntu-latest needs: [buildBaseline, buildDelta] diff --git a/fastlane/Fastfile b/fastlane/Fastfile index a5e4245269a8..eced35198c95 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -17,7 +17,7 @@ platform :android do desc "Generate a new local APK for e2e testing" lane :build_e2e do ENV["ENVFILE"]="tests/e2e/.env.e2e" - ENV["ENTRY_FILE"]="src/libs/E2E/reactNativeLaunchingTest.js" + ENV["ENTRY_FILE"]="../src/libs/E2E/reactNativeLaunchingTest.js" ENV["E2E_TESTING"]="true" # Test if the entry file exists, otherwise fail early. If its there, log that we are good to proceed