2023-04-17 15:28:58 +00:00
#!/bin/bash
2024-08-05 01:45:21 +00:00
# Set script to exit immediately on any error
set -e
2023-04-17 15:28:58 +00:00
# For the file paths to work correctly, call this script with this command from the cloned repo folder root:
# sh automation_tools/pre_build_automation.sh
# Different actions need different information in the task list file
2024-01-24 15:48:56 +00:00
# branch: This changes the placeholder text to the currently-detected GIT branch if an automated build was started from a PR environment.
2024-08-05 01:45:21 +00:00
# hash: Finds the SHA256 hash of a file online and updates the placeholder in the manifest.
2023-04-17 15:28:58 +00:00
# Needs the URL of the file, in this line format: hash^PLACEHOLDERTEXT^url
2024-08-05 01:45:21 +00:00
# latestcommit: Finds the most recent commit of a git repo and updates the placeholder in the manifest.
2023-04-17 15:28:58 +00:00
# Needs the URL of the repo and the branch to find the latest commit from, in this line format: latestcommit^PLACEHOLDERTEXT^url^branch
2024-06-06 13:18:57 +00:00
# latestghtag: Finds the most recent tag on a GitHub repo, for repos that don't have normal releases, but also shouldn't use the latest commit
# Needs the URL of the repo, in this line format: latestghtag^PLACEHOLDERTEXT^url
2024-02-05 17:35:59 +00:00
# latestghrelease: Finds the download URL and SHA256 hash of the latest release from a git repo.
2024-08-05 01:45:21 +00:00
# Needs the API URL of the repo, in this line format: latestghrelease^PLACEHOLDERTEXT^https://api.github.com/repos/<owner-name>/<repo-name>/releases/latest^<file suffix>
# As this command updates two different placeholders (one for the URL, one for the file hash) in the manifest,
2023-04-17 15:28:58 +00:00
# the URL that would be used in the above example is "PLACEHOLDERTEXT" and the hash placeholder text would be "HASHPLACEHOLDERTEXT"
2024-08-05 01:45:21 +00:00
# The "HASH" prefix of the hash placeholder text is hardcoded in the script.
2024-02-05 17:35:59 +00:00
# The <file_suffix> will be the file extension or other identifying suffix at the end of the file name that can be used to select from multiple releases.
# Example: If there are these file options for a given release:
# yuzu-mainline-20240205-149629642.AppImage
# yuzu-linux-20240205-149629642-source.tar.xz
2024-08-05 01:45:21 +00:00
# yuzu-linux-20240205-149629642-debug.tar.xz
2024-02-05 17:35:59 +00:00
# Entering "AppImage" (without quotes) for the <file_suffix> will identify yuzu-mainline-20240205-149629642.AppImage
# Entering "source-.tar.xz" (without quotes) for the <file_suffix> will identify yuzu-linux-20240205-149629642-source.tar.xz
# Entering "debug-tar.xz" (without quotes) for the <file_suffix> will identify yuzu-linux-20240205-149629642-debug.tar.xz
2024-08-05 01:45:21 +00:00
# As a file extension like ".tar.xz" can apply to multiple file options, the entire part that is appended to each release name should be included.
2024-02-05 17:35:59 +00:00
# The <file_suffix> will also only consider entries where the given suffix is at the end of the file name. So "AppImage" will identify "file.AppImage" but not "file.AppImage.zsync"
2024-08-05 01:45:21 +00:00
# latestghreleasesha: Finds the SHA256 hash of a specific asset in the latest release from a git repo.
# Needs the API URL of the repo, in this line format: latestghreleasesha^PLACEHOLDERTEXT^https://api.github.com/repos/<owner-name>/<repo-name>/releases/latest^<file suffix>
# This command updates the placeholder in the manifest with the SHA256 hash of the specified asset.
2024-01-24 15:48:56 +00:00
# outside_file: Prints the contents of a file from the build environment (such as the buildid file) and replaces the placeholder text with those contents.
# outside_env_var: Gets the value of an environmental variable from the build environment (the output of "echo $var" from the terminal) and replaces the placeholder text with that value.
2024-08-05 01:45:21 +00:00
# custom_command: Runs a single command explicitly as written in the $URL field of the task list, including variable and command expansion. This should work the same as if you were running the command directly from the terminal.
2024-01-24 15:48:56 +00:00
# This command does not need a PLACEHOLDERTEXT field in the task list, so needs to be in this syntax: custom_command^^$COMMAND
2024-08-05 01:45:21 +00:00
# url: This is used to calculate a dynamic URL and the value to the $calculated_url environmental variable, for use in other subsequent commands.
# Define paths
rd_manifest = " ${ GITHUB_WORKSPACE } /net.retrodeck.retrodeck.yml "
automation_task_list = " ${ GITHUB_WORKSPACE } /automation_tools/automation_task_list.cfg "
2023-04-17 15:28:58 +00:00
2024-08-05 01:45:21 +00:00
# Retrieve current git branch
get_current_branch( ) {
local branch = $( git rev-parse --abbrev-ref HEAD)
if [ " $branch " = = "HEAD" ] ; then
echo " $GITHUB_REF " | sed 's@refs/heads/@@'
else
echo " $branch "
fi
}
2023-04-17 15:28:58 +00:00
2024-08-12 00:14:59 +00:00
# Retrieve the repository URL
get_repo_url( ) {
local repo_url = $( git config --get remote.origin.url)
# Convert SSH URL to HTTPS if needed
if [ [ " $repo_url " = = git@* ] ] ; then
repo_url = $( echo " $repo_url " | sed -e 's|git@|https://|' -e 's|:|/|' )
fi
echo " $repo_url "
}
2024-08-05 01:45:21 +00:00
current_branch = $( get_current_branch)
2024-08-12 00:14:59 +00:00
current_repo_url = $( get_repo_url)
2024-01-10 20:38:45 +00:00
2023-04-17 15:28:58 +00:00
echo " Manifest location: $rd_manifest "
echo " Automation task list location: $automation_task_list "
echo
echo "Task list contents:"
cat " $automation_task_list "
echo
2024-08-05 01:45:21 +00:00
# Functions to handle different actions
handle_branch( ) {
local placeholder = " $1 "
echo " Replacing placeholder $placeholder with branch $current_branch "
/bin/sed -i 's^' " $placeholder " '^' " $current_branch " '^g' " $rd_manifest "
}
handle_hash( ) {
local placeholder = " $1 "
local url = " $2 "
local calculated_url = $( eval echo " $url " )
local hash = $( curl -sL " $calculated_url " | sha256sum | cut -d ' ' -f1)
echo " Replacing placeholder $placeholder with hash $hash "
/bin/sed -i 's^' " $placeholder " '^' " $hash " '^g' " $rd_manifest "
}
2024-01-24 15:48:56 +00:00
2024-08-05 01:45:21 +00:00
handle_latestcommit( ) {
local placeholder = " $1 "
local url = " $2 "
local branch = " $3 "
local commit = $( git ls-remote " $url " " $branch " | cut -f1)
echo " Replacing placeholder $placeholder with latest commit $commit "
/bin/sed -i 's^' " $placeholder " '^' " $commit " '^g' " $rd_manifest "
}
2024-01-24 15:48:56 +00:00
2024-08-05 01:45:21 +00:00
handle_latestghtag( ) {
local placeholder = " $1 "
local url = " $2 "
local tag = $( git ls-remote --tags " $url " | tail -n 1 | cut -f2 | sed 's|refs/tags/||' )
echo " Replacing placeholder $placeholder with latest tag $tag "
/bin/sed -i 's^' " $placeholder " '^' " $tag " '^g' " $rd_manifest "
}
handle_latestghrelease( ) {
local placeholder = " $1 "
local url = " $2 "
local suffix = " $3 "
echo " Fetching release data from: $url "
local release_data = $( curl -s " $url " )
echo "Release data fetched."
local ghreleaseurl = $( echo " $release_data " | jq -r " .assets[] | select(.name | endswith(\" $suffix \")).browser_download_url " )
if [ [ -z " $ghreleaseurl " ] ] ; then
echo " Error: No asset found with suffix $suffix "
exit 1
fi
local ghreleasehash = $( curl -sL " $ghreleaseurl " | sha256sum | cut -d ' ' -f1)
echo " Replacing placeholder $placeholder with URL $ghreleaseurl and hash $ghreleasehash "
/bin/sed -i 's^' " $placeholder " '^' " $ghreleaseurl " '^g' " $rd_manifest "
/bin/sed -i 's^' " HASHFOR $placeholder " '^' " $ghreleasehash " '^g' " $rd_manifest "
}
handle_latestghreleasesha( ) {
local placeholder = " $1 "
local url = " $2 "
local suffix = " $3 "
echo " Fetching release data from: $url "
local release_data = $( curl -s " $url " )
echo "Release data fetched."
local ghreleaseurl = $( echo " $release_data " | jq -r " .assets[] | select(.name | endswith(\" $suffix \")).browser_download_url " )
if [ [ -z " $ghreleaseurl " ] ] ; then
echo " Error: No asset found with suffix $suffix "
exit 1
fi
local ghreleasehash = $( curl -sL " $ghreleaseurl " | sha256sum | cut -d ' ' -f1)
echo " Replacing placeholder $placeholder with hash $ghreleasehash "
/bin/sed -i 's^' " $placeholder " '^' " $ghreleasehash " '^g' " $rd_manifest "
}
handle_outside_file( ) {
local placeholder = " $1 "
local file_path = " $2 "
if [ [ " $file_path " = = \$ * ] ] ; then
eval file_path = " $file_path "
fi
local content = $( cat " $file_path " )
echo " Replacing placeholder $placeholder with content of file $file_path "
/bin/sed -i 's^' " $placeholder " '^' " $content " '^g' " $rd_manifest "
}
handle_outside_env_var( ) {
local placeholder = " $1 "
local var_name = " $2 "
if [ [ " $var_name " = = \$ * ] ] ; then
eval var_name = " $var_name "
fi
local value = $( echo " $var_name " )
echo " Replacing placeholder $placeholder with environment variable $value "
/bin/sed -i 's^' " $placeholder " '^' " $value " '^g' " $rd_manifest "
}
handle_custom_command( ) {
local command = " $1 "
echo " Executing custom command: $command "
eval " $command "
}
handle_url( ) {
local placeholder = " $1 "
local url = " $2 "
local calculated_url = $( eval echo " $url " )
echo " Replacing placeholder $placeholder with calculated URL $calculated_url "
/bin/sed -i 's^' " $placeholder " '^' " $calculated_url " '^g' " $rd_manifest "
}
2024-08-12 00:14:59 +00:00
# Handle the THISREPO placeholder
handle_thisrepo( ) {
local placeholder = " $1 "
echo " Replacing placeholder $placeholder with repository URL $current_repo_url "
/bin/sed -i 's^' " $placeholder " '^' " $current_repo_url " '^g' " $rd_manifest "
}
2024-08-05 01:45:21 +00:00
# Process the task list
while IFS = "^" read -r action placeholder url branch || [ [ -n " $action " ] ] ; do
if [ [ ! " $action " = = "#" * ] ] && [ [ -n " $action " ] ] ; then
case " $action " in
"branch" ) handle_branch " $placeholder " ; ;
"hash" ) handle_hash " $placeholder " " $url " ; ;
"latestcommit" ) handle_latestcommit " $placeholder " " $url " " $branch " ; ;
"latestghtag" ) handle_latestghtag " $placeholder " " $url " ; ;
"latestghrelease" ) handle_latestghrelease " $placeholder " " $url " " $branch " ; ;
"latestghreleasesha" ) handle_latestghreleasesha " $placeholder " " $url " " $branch " ; ;
"outside_file" ) handle_outside_file " $placeholder " " $url " ; ;
"outside_env_var" ) handle_outside_env_var " $placeholder " " $url " ; ;
"custom_command" ) handle_custom_command " $url " ; ;
"url" ) handle_url " $placeholder " " $url " ; ;
2024-08-12 00:14:59 +00:00
"THISREPO" ) handle_thisrepo " $placeholder " ; ;
2024-01-24 15:48:56 +00:00
esac
2023-04-17 15:28:58 +00:00
fi
done < " $automation_task_list "
2024-08-12 00:14:59 +00:00