Skip to content

Commit 8bfb10d

Browse files
committed
fix default to asan => false
1 parent 6f9ad3d commit 8bfb10d

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

.github/matrix.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,8 +144,9 @@ function select_jobs($repository, $trigger, $nightly, $labels, $php_version, $re
144144
$jobs['SOLARIS'] = true;
145145
}
146146
if ($all_jobs || !$no_jobs || $test_windows) {
147-
$matrix = [['asan' => true, 'opcache' => true, 'x64' => true, 'zts' => true]];
147+
$matrix = [['asan' => false, 'opcache' => true, 'x64' => true, 'zts' => true]];
148148
if ($all_variations) {
149+
$matrix[] = ['asan' => true, 'opcache' => true, 'x64' => true, 'zts' => true],
149150
$matrix[] = ['asan' => false, 'opcache' => false, 'x64' => false, 'zts' => false];
150151
if (version_compare($php_version, '8.5', '>=')) {
151152
$matrix[] = ['asan' => false, 'opcache' => true, 'x64' => true, 'zts' => true, 'clang' => true];

0 commit comments

Comments
 (0)