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 92d0e02 commit 12e8278Copy full SHA for 12e8278
.github/jobs/ci_settings.sh
@@ -34,6 +34,15 @@ mysql_user () {
34
echo "$1" | mysql -udomjudge -pdomjudge ${2:-} | tee -a "$ARTIFACTS"/mysql.txt
35
}
36
37
+show_phpinfo() {
38
+ phpversion=$1
39
+ section_start "Show the new PHP info"
40
+ update-alternatives --set php /usr/bin/php"${phpversion}"
41
+ php -v
42
+ php -m
43
+ section_end
44
+}
45
+
46
section_start () {
47
if [ "$#" -ne 1 ]; then
48
echo "Only 1 argument is needed for GHA, 2 was needed for GitLab."
0 commit comments