CI: Sync configuration with 4.4 branch

Includes cherry-pick of warning fixes from 8d1462c748
and template builds unit tests fixes from 17929a3443.

Also a Windows MSVC detection fix for SCons 4.6.0+ from f682406cf2.
This commit is contained in:
Rémi Verschelde 2025-04-24 18:14:03 +02:00
parent e7d56e32fd
commit 76b1b33604
No known key found for this signature in database
GPG key ID: C3336907360768E1
32 changed files with 473 additions and 296 deletions

View file

@ -3753,7 +3753,7 @@ void Image::fix_alpha_edges() {
}
int closest_dist = max_dist;
uint8_t closest_color[3];
uint8_t closest_color[3] = { 0 };
int from_x = MAX(0, j - max_radius);
int to_x = MIN(width - 1, j + max_radius);