diff --git a/.github/workflows/e2ePerformanceTests.yml b/.github/workflows/e2ePerformanceTests.yml index 874ff87f68d8..9d94bf900615 100644 --- a/.github/workflows/e2ePerformanceTests.yml +++ b/.github/workflows/e2ePerformanceTests.yml @@ -30,21 +30,24 @@ jobs: env: GITHUB_TOKEN: ${{ github.token }} - - name: Check if there's an existing artifact for this baseline - id: checkForExistingArtifact - uses: xSAVIKx/artifact-exists-action@3c5206b1411c0d2fc0840f56b7140646933d9d6a - with: - name: baseline-apk-${{ steps.getMostRecentRelease.outputs.VERSION }} - - - name: Skip build if there's already an existing artifact for the baseline - if: ${{ fromJSON(steps.checkForExistingArtifact.outputs.exists) }} - run: echo 'APK for baseline ${{ steps.getMostRecentRelease.outputs.VERSION }} already exists, reusing existing build' - - - name: Checkout "Baseline" commit (last release) - if: ${{ !fromJSON(steps.checkForExistingArtifact.outputs.exists) }} - run: | - git fetch origin tag ${{ steps.getMostRecentRelease.outputs.VERSION }} --no-tags --depth=1 - git switch --detach ${{ steps.getMostRecentRelease.outputs.VERSION }} + # - name: Check if there's an existing artifact for this baseline + # id: checkForExistingArtifact + # uses: xSAVIKx/artifact-exists-action@3c5206b1411c0d2fc0840f56b7140646933d9d6a + # with: + # name: baseline-apk-${{ steps.getMostRecentRelease.outputs.VERSION }} + + # - name: Skip build if there's already an existing artifact for the baseline + # if: ${{ fromJSON(steps.checkForExistingArtifact.outputs.exists) }} + # run: echo 'APK for baseline ${{ steps.getMostRecentRelease.outputs.VERSION }} already exists, reusing existing build' + + # - name: Checkout "Baseline" commit (last release) + # if: ${{ !fromJSON(steps.checkForExistingArtifact.outputs.exists) }} + # run: | + # git fetch origin tag ${{ steps.getMostRecentRelease.outputs.VERSION }} --no-tags --depth=1 + # git switch --detach ${{ steps.getMostRecentRelease.outputs.VERSION }} + + - name: Checkout latest main commit (TODO temporary until new version is released) + run: git switch --detach main - uses: Expensify/App/.github/actions/composite/setupNode@main