From 665b0f1d2cbaf69e14c105db7d935d511f4cefc0 Mon Sep 17 00:00:00 2001 From: Kyle Harding Date: Tue, 17 Dec 2024 13:28:53 -0500 Subject: [PATCH] Remove shared-downloads from local S3 cache save We are using AWS S3 for the downloads mirror now, so we can save time and storage by only using the local cache for sstate. Signed-off-by: Kyle Harding --- .github/workflows/yocto-build-deploy.yml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/.github/workflows/yocto-build-deploy.yml b/.github/workflows/yocto-build-deploy.yml index c2ea99200..099a7f98c 100644 --- a/.github/workflows/yocto-build-deploy.yml +++ b/.github/workflows/yocto-build-deploy.yml @@ -549,11 +549,8 @@ jobs: key: ${{ inputs.machine }}-sstate-${{ github.sha }} restore-keys: | ${{ inputs.machine }}-sstate- - # FIXME: Include the shared-downloads directory with the sstate cache for now until - # we fully switch to AWS S3 for shared-downloads path: | ${{ github.workspace }}/shared/${{ inputs.machine }}/sstate - ${{ github.workspace }}/shared/shared-downloads # All preperation complete before this step # Start building balenaOS @@ -619,11 +616,8 @@ jobs: region: local use-fallback: ${{ github.event.repository.private != true }} key: ${{ inputs.machine }}-sstate-${{ github.sha }} - # FIXME: Include the shared-downloads directory with the sstate cache for now until - # we fully switch to AWS S3 for shared-downloads path: | ${{ github.workspace }}/shared/${{ inputs.machine }}/sstate - ${{ github.workspace }}/shared/shared-downloads # https://github.com/unfor19/install-aws-cli-action - name: Setup awscli