Skip to content

Commit 8da174f

Browse files
committed
CI: remove leftover Cirrus CI references
Follow-up to php#16822, now that php-src no longer uses Cirrus CI, some small leftover references to Cirrus CI and some tests that were skipped on Cirrus CI can now be adjusted.
1 parent bef96f3 commit 8da174f

File tree

4 files changed

+2
-9
lines changed

4 files changed

+2
-9
lines changed

.github/workflows/push.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@ on:
99
- '**/README.*'
1010
- CONTRIBUTING.md
1111
- CODING_STANDARDS.md
12-
- .cirrus.yml
13-
- .circleci/**
1412
branches:
1513
- PHP-8.1
1614
- PHP-8.2

docs/release-process.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,6 @@ releases.
5454

5555
3. Ensure that the relevant tests on CI are green.
5656

57-
- https://cirrus-ci.com/github/php/php-src
5857
- https://github.com/php/php-src/actions
5958

6059
> 💡 **Tip** \

ext/sockets/tests/socket_sendto_zerocopy.phpt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ if (!defined("SO_ZEROCOPY")) {
1111
if (strpos($arch, 'ppc') !== false || strpos($arch, 'powerpc') !== false) {
1212
die('skip not for powerpc arch');
1313
}
14-
if (getenv('CIRRUS_CI') && strpos($arch, 'aarch64') !== false) {
15-
die('xfail Broken on Cirrus + arm');
14+
if (strpos($arch, 'aarch64') !== false) {
15+
die('xfail Broken on arm');
1616
}
1717
?>
1818
--FILE--

ext/standard/tests/file/disk_free_space_basic.phpt

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
11
--TEST--
22
Test disk_free_space and its alias diskfreespace() functions : basic functionality
3-
--SKIPIF--
4-
<?php
5-
if (getenv('CIRRUS_CI')) die('skip Inaccurate on Cirrus');
6-
?>
73
--INI--
84
memory_limit=32M
95
--FILE--

0 commit comments

Comments
 (0)