From 9b3ba5c8c9e8feffac68e609741dbffb7f480baf Mon Sep 17 00:00:00 2001 From: Angus Bayley Date: Wed, 11 Sep 2024 14:03:59 +0100 Subject: [PATCH] temp: remove turbo and pnpm cacheing in toolchain setup --- .../composites/setup-toolchain/action.yml | 27 ------------------- 1 file changed, 27 deletions(-) diff --git a/tools/actions/composites/setup-toolchain/action.yml b/tools/actions/composites/setup-toolchain/action.yml index 7797c33f6a34..73b7d10ccaef 100644 --- a/tools/actions/composites/setup-toolchain/action.yml +++ b/tools/actions/composites/setup-toolchain/action.yml @@ -64,21 +64,6 @@ runs: role-to-assume: arn:aws:iam::${{ inputs.accountId }}:role/${{ inputs.roleName }} aws-region: ${{ inputs.region }} - - name: Cache pnpm store - uses: tespkg/actions-cache@v1 - if: steps.aws.conclusion == 'success' && inputs.skip-pnpm-cache != 'true' - with: - path: ${{ env.STORE_PATH }} - key: ${{ runner.os }}-pnpm-store-${{ hashFiles('pnpm-lock.yaml') }} - restore-keys: | - ${{ runner.os }}-pnpm-store- - accessKey: ${{ env.AWS_ACCESS_KEY_ID }} - secretKey: ${{ env.AWS_SECRET_ACCESS_KEY }} - sessionToken: ${{ env.AWS_SESSION_TOKEN }} - bucket: ll-gha-s3-cache - region: ${{ inputs.region }} - use-fallback: false - - uses: actions/setup-node@v3 with: node-version: 20.11.0 @@ -90,18 +75,6 @@ runs: npm i -g npm shell: bash - - name: TurboRepo local caching server - id: turborepo-cache-server - if: steps.aws.conclusion == 'success' && inputs.skip_turbo_cache != 'true' - uses: LedgerHQ/ledger-live/tools/actions/turborepo-s3-cache@develop - with: - server-token: "${{ inputs.turbo-server-token }}" - cleanup-cache-folder: "true" - aws-access-key: ${{ env.AWS_ACCESS_KEY_ID }} - aws-secret-key: ${{ env.AWS_SECRET_ACCESS_KEY }} - aws-session-token: ${{ env.AWS_SESSION_TOKEN }} - region: ${{ inputs.region }} - - name: Cache LLM pods uses: actions/cache@v3 if: inputs.skip-pod-cache != 'true'