mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-09 12:42:54 +00:00
Currently, if the script fails, it simply runs "exit 1". This exits the script, but keeps the VM running, so CI hangs until it times out. Instead of exiting, write a failure status to an error log and shutdown. CI can then read that error log and fail the run if needed.
60 lines
1.4 KiB
Bash
Executable file
60 lines
1.4 KiB
Bash
Executable file
#!/bin/Shell
|
|
|
|
export ARGSPARSER_EMIT_MARKDOWN=1
|
|
|
|
# Qemu likes to start us in the middle of a line, so:
|
|
echo
|
|
|
|
ERROR_FILE="generate_manpages_error.log"
|
|
rm -f "$ERROR_FILE"
|
|
|
|
exit_for_error()
|
|
{
|
|
if test $DO_SHUTDOWN_AFTER_GENERATE {
|
|
touch "$ERROR_FILE" # Ensure it exists, in case there wasn't any stderr output.
|
|
shutdown -n
|
|
} else {
|
|
exit 1
|
|
}
|
|
}
|
|
|
|
rm -rf generated_manpages 2> "$ERROR_FILE" || exit_for_error
|
|
|
|
for i in ( \
|
|
(UserspaceEmulator 1) \
|
|
(config 1) \
|
|
(fortune 1) \
|
|
(grep 1) \
|
|
(gunzip 1) \
|
|
(gzip 1) \
|
|
(ifconfig 1) \
|
|
(lsof 1) \
|
|
(nc 1) \
|
|
(netstat 1) \
|
|
(nl 1) \
|
|
(ntpquery 1) \
|
|
(passwd 1) \
|
|
(profile 1) \
|
|
(readelf 1) \
|
|
(shot 1) \
|
|
(sql 1) \
|
|
(strace 1) \
|
|
(tail 1) \
|
|
(tr 1) \
|
|
(traceroute 1) \
|
|
(tree 1) \
|
|
(truncate 1) \
|
|
(utmpupdate 1) \
|
|
) {
|
|
filename="generated_manpages/man$i[1]/$i[0].md"
|
|
mkdir -p "generated_manpages/man$i[1]"
|
|
echo "Generating for $i[0] in $filename ..."
|
|
$i[0] --help > "$filename" 2> "$ERROR_FILE" || exit_for_error
|
|
echo -e "\n<!-- Auto-generated through ArgsParser -->" >> "$filename" 2> "$ERROR_FILE" || exit_for_error
|
|
}
|
|
|
|
echo "Successful."
|
|
|
|
if test $DO_SHUTDOWN_AFTER_GENERATE {
|
|
shutdown -n
|
|
}
|