From dd87a7adaa8c6eacd59218b5d88b7275d216ae72 Mon Sep 17 00:00:00 2001 From: ludamad Date: Thu, 12 Dec 2024 19:38:23 -0500 Subject: [PATCH] chore: disable ARM CI --- .github/workflows/ci-arm.yml | 41 ++++++++++++++++++------------------ 1 file changed, 21 insertions(+), 20 deletions(-) diff --git a/.github/workflows/ci-arm.yml b/.github/workflows/ci-arm.yml index 1ba74da9a63..56137bbed7c 100644 --- a/.github/workflows/ci-arm.yml +++ b/.github/workflows/ci-arm.yml @@ -86,30 +86,31 @@ jobs: sudo shutdown -P 60 # necessary to get around builtin hard timeout earthly-ci ./yarn-project+export-e2e-test-images - # all the non-bench end-to-end integration tests for aztec - e2e: - needs: [build] - runs-on: master-arm - steps: - # permission kludge before checkout, see https://github.com/actions/checkout/issues/211#issuecomment-611986243 - - run: sudo chown -R $USER:$USER /home/ubuntu/ - - uses: actions/checkout@v4 - with: { ref: "${{ env.GIT_COMMIT }}" } - - uses: ./.github/ci-setup-action - with: - concurrency_key: e2e-arm - # prepare images locally, tagged by commit hash - - name: "Build E2E Image" - timeout-minutes: 40 - working-directory: ./yarn-project/end-to-end - run: | - ./scripts/e2e_compose_test.sh uniswap_trade_on_l1_from_l2.test.ts + # TODO(https://github.com/AztecProtocol/aztec-packages/issues/10681) + # # all the non-bench end-to-end integration tests for aztec + # e2e: + # needs: [build] + # runs-on: master-arm + # steps: + # # permission kludge before checkout, see https://github.com/actions/checkout/issues/211#issuecomment-611986243 + # - run: sudo chown -R $USER:$USER /home/ubuntu/ + # - uses: actions/checkout@v4 + # with: { ref: "${{ env.GIT_COMMIT }}" } + # - uses: ./.github/ci-setup-action + # with: + # concurrency_key: e2e-arm + # # prepare images locally, tagged by commit hash + # - name: "Build E2E Image" + # timeout-minutes: 40 + # working-directory: ./yarn-project/end-to-end + # run: | + # ./scripts/e2e_compose_test.sh uniswap_trade_on_l1_from_l2.test.ts rerun-check: runs-on: ubuntu-20.04 permissions: actions: write - needs: [setup, build-images, build, e2e] + needs: [setup, build-images, build] #, e2e] if: ${{ !cancelled() }} steps: - name: Check for Rerun @@ -126,7 +127,7 @@ jobs: # NOTE: we only notify failures after a rerun has occurred notify: - needs: [e2e] + needs: [build] #[e2e] runs-on: ubuntu-latest if: ${{ github.ref == 'refs/heads/master' && failure() && github.run_attempt >= 2 }} steps: