From 958955e62a5ee6342b2fc24d5005b0eebdb787b0 Mon Sep 17 00:00:00 2001 From: Ilija Tovilo Date: Tue, 27 Sep 2022 23:26:41 +0200 Subject: [PATCH] Fix PHP-8.0 skipping for some jobs --- .github/nightly_matrix.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/nightly_matrix.php b/.github/nightly_matrix.php index b3a735506fb..32fa2e4cd3f 100644 --- a/.github/nightly_matrix.php +++ b/.github/nightly_matrix.php @@ -53,7 +53,7 @@ function get_matrix_include(array $branches) { 'configuration_parameters' => "CFLAGS='-fsanitize=undefined,address -DZEND_TRACK_ARENA_ALLOC' LDFLAGS='-fsanitize=undefined,address'", 'run_tests_parameters' => '--asan', ]; - if ($branch !== 'PHP-8.0') { + if ($branch['ref'] !== 'PHP-8.0') { $jobs[] = [ 'name' => '_REPEAT', 'branch' => $branch,