mirror of
https://github.com/actions/runner-images.git
synced 2025-12-10 19:16:48 +00:00
25 lines
1.2 KiB
Bash
25 lines
1.2 KiB
Bash
#!/bin/bash -e
|
|
################################################################################
|
|
## File: install-actions-cache.sh
|
|
## Desc: Download latest release from https://github.com/actions/action-versions
|
|
## Maintainer: #actions-runtime and @TingluoHuang
|
|
################################################################################
|
|
|
|
# Source the helpers for use with the script
|
|
source $HELPER_SCRIPTS/install.sh
|
|
source $HELPER_SCRIPTS/etc-environment.sh
|
|
|
|
# Prepare directory and env variable for ACTIONS_RUNNER_ACTION_ARCHIVE_CACHE
|
|
ACTION_ARCHIVE_CACHE_DIR=/opt/actionarchivecache
|
|
mkdir -p $ACTION_ARCHIVE_CACHE_DIR
|
|
chmod -R 777 $ACTION_ARCHIVE_CACHE_DIR
|
|
echo "Setting up ACTIONS_RUNNER_ACTION_ARCHIVE_CACHE variable to ${ACTION_ARCHIVE_CACHE_DIR}"
|
|
setEtcEnvironmentVariable "ACTIONS_RUNNER_ACTION_ARCHIVE_CACHE" "${ACTION_ARCHIVE_CACHE_DIR}"
|
|
|
|
# Download latest release from github.com/actions/action-versions and untar to /opt/actionarchivecache
|
|
downloadUrl=$(resolve_github_release_asset_url "actions/action-versions" "endswith(\"action-versions.tar.gz\")" "latest")
|
|
archive_path=$(download_with_retry "$downloadUrl")
|
|
tar -xzf "$archive_path" -C $ACTION_ARCHIVE_CACHE_DIR
|
|
|
|
invoke_tests "ActionArchiveCache"
|