name: 'Cache Julia artifacts, packages and registry' description: 'Cache Julia using actions/cache' author: 'Sascha Mann, Rik Huijzer, and contributors' branding: icon: 'archive' color: 'purple' inputs: cache-name: description: >- The cache key prefix. The key body automatically includes the OS and, unless disabled, the matrix vars. Include any other parameters/details in this prefix to ensure one unique cache key per concurrent job type. default: julia-cache;workflow=${{ github.workflow }};job=${{ github.job }} include-matrix: description: Whether to include the matrix values when constructing the cache key. default: 'true' depot: description: Path to a Julia depot directory where cached data will be saved to and restored from. default: '' cache-artifacts: description: Whether to cache the depot's `artifacts` directory. default: 'true' cache-packages: description: Whether to cache the depot's `packages` directory. default: 'true' cache-registries: description: Whether to cache the depot's `registries` directory. default: 'true' cache-compiled: description: Whether to cache the depot's `compiled` directory. default: 'true' cache-scratchspaces: description: Whether to cache the depot's `scratchspaces` directory. default: 'true' cache-logs: description: Whether to cache the depot's `logs` directory. This helps automatic `Pkg.gc()` keep the cache size down. default: 'true' delete-old-caches: description: Whether to delete old caches for the given key. default: 'true' token: description: A GitHub PAT. Requires `repo` scope to enable the deletion of old caches. default: ${{ github.token }} outputs: cache-hit: description: A boolean value to indicate an exact match was found for the primary key. Returns "" when the key is new. Forwarded from actions/cache. value: ${{ steps.hit.outputs.cache-hit }} runs: using: 'composite' steps: - name: Install jq # Skip installation on GitHub-hosted runners: # https://github.com/orgs/community/discussions/48359#discussioncomment-5323864 if: ${{ !startsWith(runner.name, 'GitHub Actions') }} uses: dcarbone/install-jq-action@v2.1.0 with: force: false # Skip install when an existing `jq` is present - id: paths run: | if [ -n "${{ inputs.depot }}" ]; then depot="${{ inputs.depot }}" elif [ -n "$JULIA_DEPOT_PATH" ]; then # Use the first depot path depot=$(echo $JULIA_DEPOT_PATH | cut -d$PATH_DELIMITER -f1) else depot="~/.julia" fi echo "depot=$depot" | tee -a "$GITHUB_OUTPUT" cache_paths=() artifacts_path="${depot}/artifacts" [ "${{ inputs.cache-artifacts }}" = "true" ] && cache_paths+=("$artifacts_path") packages_path="${depot}/packages" [ "${{ inputs.cache-packages }}" = "true" ] && cache_paths+=("$packages_path") registries_path="${depot}/registries" if [ "${{ inputs.cache-registries }}" = "true" ]; then if [ ! -d "${registries_path/#\~/$HOME}" ]; then cache_paths+=("$registries_path") else echo "::warning::Julia depot registries already exist. Skipping restoring of cached registries to avoid potential merge conflicts when updating. Please ensure that \`julia-actions/cache\` precedes any workflow steps which add registries." fi fi compiled_path="${depot}/compiled" [ "${{ inputs.cache-compiled }}" = "true" ] && cache_paths+=("$compiled_path") scratchspaces_path="${depot}/scratchspaces" [ "${{ inputs.cache-scratchspaces }}" = "true" ] && cache_paths+=("$scratchspaces_path") logs_path="${depot}/logs" [ "${{ inputs.cache-logs }}" = "true" ] && cache_paths+=("$logs_path") { echo "cache-paths<> $GITHUB_OUTPUT echo "key=${key}" >> $GITHUB_OUTPUT shell: bash env: MATRIX_JSON: ${{ toJSON(matrix) }} - uses: actions/cache@4d4ae6ae148a43d0fd1eda1800170683e9882738 id: cache with: path: | ${{ steps.paths.outputs.cache-paths }} key: ${{ steps.keys.outputs.key }} restore-keys: ${{ steps.keys.outputs.restore-key }} enableCrossOsArchive: false # if it wasn't restored make the depot anyway as a signal that this action ran # for other julia actions to check, like https://github.com/julia-actions/julia-buildpkg/pull/41 - name: make depot if not restored, then list depot directory sizes run: | mkdir -p ${{ steps.paths.outputs.depot }} du -shc ${{ steps.paths.outputs.depot }}/* || true shell: bash # github and actions/cache doesn't provide a way to update a cache at a given key, so we delete any # that match the restore key just before saving the new cache # Not windows - uses: pyTooling/Actions/with-post-step@adef08d3bdef092282614f3b683897cefae82ee3 if: ${{ inputs.delete-old-caches != 'false' && runner.OS != 'Windows' }} with: # seems like there has to be a `main` step in this action. Could list caches for info if we wanted # main: julia ${{ github.action_path }}/handle_caches.jl "${{ github.repository }}" "list" main: echo "" post: julia $GITHUB_ACTION_PATH/handle_caches.jl rm "${{ github.repository }}" "${{ steps.keys.outputs.restore-key }}" "${{ github.ref }}" "${{ inputs.delete-old-caches != 'required' }}" env: GH_TOKEN: ${{ inputs.token }} # Windows (because this action uses command prompt on windows) - uses: pyTooling/Actions/with-post-step@adef08d3bdef092282614f3b683897cefae82ee3 if: ${{ inputs.delete-old-caches != 'false' && runner.OS == 'Windows' }} with: main: echo "" post: cd %GITHUB_ACTION_PATH% && julia handle_caches.jl rm "${{ github.repository }}" "${{ steps.keys.outputs.restore-key }}" "${{ github.ref }}" "${{ inputs.delete-old-caches != 'required' }}" env: GH_TOKEN: ${{ inputs.token }} - id: hit run: echo "cache-hit=$CACHE_HIT" >> $GITHUB_OUTPUT env: CACHE_HIT: ${{ steps.cache.outputs.cache-hit }} shell: bash