summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--autobuild/icons/lang-r.pngbin0 -> 603 bytes
-rw-r--r--autobuild/results.php4
-rw-r--r--conf.php2
-rw-r--r--log_files.php1
4 files changed, 4 insertions, 3 deletions
diff --git a/autobuild/icons/lang-r.png b/autobuild/icons/lang-r.png
new file mode 100644
index 0000000..5469f18
--- /dev/null
+++ b/autobuild/icons/lang-r.png
Binary files differ
diff --git a/autobuild/results.php b/autobuild/results.php
index 3bbee74..c9bb05d 100644
--- a/autobuild/results.php
+++ b/autobuild/results.php
@@ -6,7 +6,7 @@
<?php
function parse_package($rpm) {
- if (preg_match("/(.*)-([^-]*-[^-]*mga)[1-9].src.rpm/", $rpm, $matches)) {
+ if (preg_match("/(.*)-([^-]*-[^-]*mga)[0-9]+.src.rpm/", $rpm, $matches)) {
return Array('package' => $matches[1], 'version' => $matches[2]);
} else {
return false;
@@ -386,7 +386,7 @@ foreach ($failure as $rpm => $error) {
$error_html = "<img src='icons/error-$error.png' title='$error'/> $error";
}
$history = get_build_history($packageid);
- if (is_flaky($history)) {
+ if ($history && is_flaky($history)) {
$history_link = $history_link . " <img src='icons/warning-flaky.png' title='Flaky build' />";
}
$langs = "";
diff --git a/conf.php b/conf.php
index 3244587..88f89ab 100644
--- a/conf.php
+++ b/conf.php
@@ -48,4 +48,4 @@ $theme_name = 'mageia';
/** themes directory */
$themes_dir = $g_webapp_dir . '/themes/';
-$mandatory_arches = array('i586', 'x86_64', 'aarch64');
+$mandatory_arches = array('i586', 'i686', 'x86_64', 'aarch64');
diff --git a/log_files.php b/log_files.php
index a4c7b50..70af1cc 100644
--- a/log_files.php
+++ b/log_files.php
@@ -57,6 +57,7 @@ if ($type == 'rejected') {
$others = array(
'.youri',
'_i586.done',
+ '_i686.done',
'_x86_64.done',
'_armv7hl.done',
'_aarch64.done'