Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,6 @@ on:
- '**/README.*'
- CONTRIBUTING.md
- CODING_STANDARDS.md
- .cirrus.yml
- .circleci/**
branches:
- PHP-8.1
- PHP-8.2
Expand Down
1 change: 0 additions & 1 deletion docs/release-process.md
Original file line number Diff line number Diff line change
Expand Up @@ -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** \
Expand Down
4 changes: 2 additions & 2 deletions ext/sockets/tests/socket_sendto_zerocopy.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -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--
Expand Down
4 changes: 0 additions & 4 deletions ext/standard/tests/file/disk_free_space_basic.phpt
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
--TEST--
Test disk_free_space and its alias diskfreespace() functions : basic functionality
--SKIPIF--
<?php
if (getenv('CIRRUS_CI')) die('skip Inaccurate on Cirrus');
?>
--INI--
memory_limit=32M
--FILE--
Expand Down
Loading