We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bcea200 commit 4a70f26Copy full SHA for 4a70f26
src/SPC/util/GlobalEnvManager.php
@@ -45,7 +45,7 @@ public static function init(?BuilderBase $builder = null): void
45
// Define env vars for linux
46
if (PHP_OS_FAMILY === 'Linux') {
47
$arch = getenv('GNU_ARCH');
48
- if (SystemUtil::isMuslDist() || getenv('SPC_LIBC') !== 'musl') {
+ if (SystemUtil::isMuslDist() || getenv('SPC_LIBC') === 'glibc') {
49
self::putenv('SPC_LINUX_DEFAULT_CC=gcc');
50
self::putenv('SPC_LINUX_DEFAULT_CXX=g++');
51
self::putenv('SPC_LINUX_DEFAULT_AR=ar');
src/globals/test-extensions.php
@@ -24,7 +24,7 @@
24
'macos-13',
25
// 'macos-14',
26
'macos-15',
27
- // 'ubuntu-latest',
+ 'ubuntu-latest',
28
'ubuntu-22.04',
29
'ubuntu-24.04',
30
'ubuntu-22.04-arm',
0 commit comments