mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
Always skip style check for dev:check ci (#12654)
* Always skip style check for dev:check ci * fix names and mysql 8 was barely being tested * fix sql mode test * safer vendor check * flubbed the regex * ... * Mysql 8 fixes Co-authored-by: Jellyfrog <Jellyfrog@users.noreply.github.com>
This commit is contained in:
@@ -433,7 +433,7 @@ class CiHelper
|
||||
$this->setFlags([
|
||||
'unit_skip' => empty($this->changed['php']) && ! array_sum(Arr::only($this->getFlags(), ['unit_os', 'unit_docs', 'unit_svg', 'unit_modules', 'docs_changed'])),
|
||||
'lint_skip' => array_sum(Arr::only($this->getFlags(), ['lint_skip_php', 'lint_skip_python', 'lint_skip_bash'])) === 3,
|
||||
'style_skip' => empty($this->changed['php']),
|
||||
'style_skip' => ! $this->flags['ci'] && empty($this->changed['php']),
|
||||
'web_skip' => empty($this->changed['php']) && empty($this->changed['resources']),
|
||||
]);
|
||||
}
|
||||
|
Reference in New Issue
Block a user