mirror of
https://github.com/actions/runner.git
synced 2025-12-13 19:03:44 +00:00
* Only execute post for actions that have one
* Working container runner update with run.sh
* Revert "Only execute post for actions that have one"
This reverts commit 9675941fdb.
* Relaunch the listener without quitting run.cmd
* Fix typo
* Extract most os run.sh logic so we can update it
* Add bash line endings
* Extract the logic from run.cmd
* Add EoF lines
* Add unexpected ERRORLEVEL messages to cmd
* Simplify contract between run and helper
* Remove unused exit
* WIP: run a copy of the helper so it's safe to update
* Throw NonRetryableException if not configured
* Log and format
* Fix typo
* Fix typo
* Use helper template system for bash as well
* Update run.sh
* Remove unnecessary comments
* Use ping instead of timeout
* Use localhost in ping-timeout (n times, w timeout)
Co-authored-by: Ferenc Hammerl <hammerl.ferenc@gmail.com>
25 lines
876 B
Bash
Executable File
25 lines
876 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Change directory to the script root directory
|
|
# https://stackoverflow.com/questions/59895/getting-the-source-directory-of-a-bash-script-from-within
|
|
SOURCE="${BASH_SOURCE[0]}"
|
|
while [ -h "$SOURCE" ]; do # resolve $SOURCE until the file is no longer a symlink
|
|
DIR="$( cd -P "$( dirname "$SOURCE" )" && pwd )"
|
|
SOURCE="$(readlink "$SOURCE")"
|
|
[[ $SOURCE != /* ]] && SOURCE="$DIR/$SOURCE" # if $SOURCE was a relative symlink, we need to resolve it relative to the path where the symlink file was located
|
|
done
|
|
DIR="$( cd -P "$( dirname "$SOURCE" )" && pwd )"
|
|
cp -f run-helper.sh.template run-helper.sh
|
|
# run the helper process which keep the listener alive
|
|
while :;
|
|
do
|
|
"$DIR"/run-helper.sh $*
|
|
returnCode=$?
|
|
if [[ $returnCode == 1 ]]; then
|
|
echo "Restarting runner..."
|
|
else
|
|
echo "Exiting runner..."
|
|
exit 0
|
|
fi
|
|
done
|