We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec294b2 commit 84e4903Copy full SHA for 84e4903
.github/jobs/baseinstall.sh
@@ -21,6 +21,9 @@ fi
21
22
show_phpinfo "$phpversion"
23
24
+# This needs to be done before running composer
25
+sudo apt update && sudo apt install php${phpversion}-bcmath -y
26
+
27
section_start "Run composer"
28
export APP_ENV="dev"
29
cd webapp
.github/jobs/webstandard.sh
@@ -64,6 +64,11 @@ wget \
64
http://localhost/domjudge/"$URL"
65
set -e
66
RET=$?
67
+if [ $RET -ne 0 ]; then
68
+ section_end
69
+ section_start "Server log"
70
+ tail -n1000 /opt/domjude/domserver/webapp/var/log/prod.log
71
+fi
72
section_end
73
74
section_start "Archive downloaded site"
0 commit comments