docs/adrs/0354-runner-machine-info.md
Date: 2020-03-02
Status: Pending
Set up job step's log.
Ex: Include OS/Software info from Hosted image.The runner will look for a file .setup_info under the runner's root directory, The file can be a JSON with a simple schema.
[
{
"group": "OS Detail",
"detail": "........"
},
{
"group": "Software Detail",
"detail": "........"
}
]
The runner will use ::group and ::endgroup to fold all detail info into an expandable group.
Both virtual-environments and self-hosted runners can use this mechanism to add extra logging info to the Set up job step's log.
.extra_setup_info file under runner root directory.