File tree Expand file tree Collapse file tree 2 files changed +14
-12
lines changed Expand file tree Collapse file tree 2 files changed +14
-12
lines changed Original file line number Diff line number Diff line change 1
1
language : php
2
2
3
- php :
4
- # - 5.3 # requires old distro, see below
5
- - 5.4
6
- - 5.5
7
- - 5.6
8
- - 7.0
9
- - 7.1
10
- - 7.2
11
- - 7.3
12
- - hhvm # ignore errors, see below
13
-
14
3
# lock distro so new future defaults will not break the build
15
4
dist : trusty
16
5
@@ -19,8 +8,17 @@ matrix:
19
8
- php : 5.3
20
9
dist : precise
21
10
install : composer remove react/mysql --dev --no-interaction # do not install react/mysql example on legacy PHP
11
+ - php : 5.4
12
+ - php : 5.5
13
+ - php : 5.6
14
+ - php : 7.0
15
+ - php : 7.1
16
+ - php : 7.2
17
+ - php : 7.3
18
+ - php : 7.4
19
+ - php : hhvm-3.18
22
20
allow_failures :
23
- - php : hhvm
21
+ - php : hhvm-3.18
24
22
25
23
sudo : false
26
24
Original file line number Diff line number Diff line change @@ -47,6 +47,10 @@ public function testFdsWithInvalidPathReturnsSubsetOfFdsFromDevFd()
47
47
$ this ->markTestSkipped ('Unable to read /dev/fd ' );
48
48
}
49
49
50
+ if (defined ('HHVM_VERSION ' )) {
51
+ $ this ->markTestSkipped ('Not supported on HHVM ' );
52
+ }
53
+
50
54
$ fds = Io \fds ();
51
55
$ second = Io \fds ('/dev/null ' );
52
56
You can’t perform that action at this time.
0 commit comments