Added pasdoc generation to the pipeline

Added documentation generation to the pipeline, this can be retreived as an artifact and deployed on the webserver from master.
This commit is contained in:
2021-07-05 16:00:00 +01:00
parent 40b2c8efb7
commit c5bafa9fa9
156 changed files with 58 additions and 48112 deletions

9
compile_sourcelist.sh Normal file
View File

@ -0,0 +1,9 @@
#!/bin/bash
echo " "
echo "======================="
echo " "
echo "Generating Source List..."
echo " "
find "$(cd ..; pwd)" -name "*.pas" > sources.list
echo "Finished Source List Generation."
exit 0