From 7ed92604445fa671296ed9e3a088375e9eac6149 Mon Sep 17 00:00:00 2001 From: Elango Cheran Date: Thu, 12 Jan 2023 11:16:45 -0800 Subject: [PATCH] ICU-12811 Add CI workflow to retain caches that are flaky/costly to init --- .github/workflows/cache_retain.yml | 48 ++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 .github/workflows/cache_retain.yml diff --git a/.github/workflows/cache_retain.yml b/.github/workflows/cache_retain.yml new file mode 100644 index 000000000000..d63c8c6d4793 --- /dev/null +++ b/.github/workflows/cache_retain.yml @@ -0,0 +1,48 @@ +# Copyright (C) 2016 and later: Unicode, Inc. and others. +# License & terms of use: http://www.unicode.org/copyright.html +# +# This workflow is designed to keep specific caches on the main +# branch from getting evicted according to the Github Actions policy +# (currently in 2023: 7 days) in cases where the cost to construct +# the cache is high, especially in cases where there is flakiness +# (ex: network loss / throttling when downloading artifacts) involved in +# constructing the cache. +# +# Preventing a cache from eviction using this workflow requires that: +# - the cache is not too big that is starves other caches +# from using the shared cache quota for the repository +# - the cache key is specific enough to avoid cache collisions, according +# to good cache key design +# - the cache key is not overly specific to cache unnecessary cache misses +# (resulting in duplicate caches values, thereby wasting space), according +# to good cache key design +# - For more details, see: https://docs.github.com/en/actions/using-workflows/caching-dependencies-to-speed-up-workflows + +name: Retain Specific Caches + +on: + schedule: + # Because the Github Actions cache eviction policy is every 7 days, + # this cron schedule is set to run every 6 days to ensure retention + - cron: '0 12 0/6 * *' + +jobs: + retain-maven-cache: + name: Run all tests with Maven + runs-on: ubuntu-latest + steps: + - name: Checkout and setup + uses: actions/checkout@v2 + with: + lfs: true + - name: Checkout lfs objects + run: git lfs pull + - uses: actions/setup-java@v3 + with: + distribution: 'temurin' + java-version: '11' + cache: maven + - name: Run Maven unit & integration tests + run: | + cd icu4j/maven-build; + mvn --batch-mode verify \ No newline at end of file