diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index f59fcb8d7badc..4f1dfafe46d7b 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -9,8 +9,6 @@ on: - '**/README.*' - CONTRIBUTING.md - CODING_STANDARDS.md - - .cirrus.yml - - .circleci/** branches: - PHP-8.1 - PHP-8.2 diff --git a/docs/release-process.md b/docs/release-process.md index 46557524988c5..7b66afc9e4440 100644 --- a/docs/release-process.md +++ b/docs/release-process.md @@ -54,7 +54,6 @@ releases. 3. Ensure that the relevant tests on CI are green. - - https://cirrus-ci.com/github/php/php-src - https://github.com/php/php-src/actions > 💡 **Tip** \ diff --git a/ext/sockets/tests/socket_sendto_zerocopy.phpt b/ext/sockets/tests/socket_sendto_zerocopy.phpt index 8542038da9986..78ecdc0aed069 100644 --- a/ext/sockets/tests/socket_sendto_zerocopy.phpt +++ b/ext/sockets/tests/socket_sendto_zerocopy.phpt @@ -11,8 +11,8 @@ if (!defined("SO_ZEROCOPY")) { if (strpos($arch, 'ppc') !== false || strpos($arch, 'powerpc') !== false) { die('skip not for powerpc arch'); } -if (getenv('CIRRUS_CI') && strpos($arch, 'aarch64') !== false) { - die('xfail Broken on Cirrus + arm'); +if (strpos($arch, 'aarch64') !== false) { + die('xfail Broken on arm'); } ?> --FILE-- diff --git a/ext/standard/tests/file/disk_free_space_basic.phpt b/ext/standard/tests/file/disk_free_space_basic.phpt index 0d93effdd4641..815b8560742dc 100644 --- a/ext/standard/tests/file/disk_free_space_basic.phpt +++ b/ext/standard/tests/file/disk_free_space_basic.phpt @@ -1,9 +1,5 @@ --TEST-- Test disk_free_space and its alias diskfreespace() functions : basic functionality ---SKIPIF-- - --INI-- memory_limit=32M --FILE--