Skip to content

Commit

Permalink
Merge pull request #20 from ashnazg/builds
Browse files Browse the repository at this point in the history
Update Builds
  • Loading branch information
mrook committed Aug 29, 2018
2 parents 742f202 + 52de87f commit 57b7a7d
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 19 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Expand Up @@ -4,3 +4,7 @@ composer.phar
vendor
# IDE
.idea
# eclipse
.buildpath
.project
.settings
5 changes: 0 additions & 5 deletions .travis.sh

This file was deleted.

35 changes: 23 additions & 12 deletions .travis.yml
@@ -1,15 +1,26 @@
sudo: false
language: php
php:
- 5.2
- 5.3
- 5.4
- 5.5
- 5.6
- 7
- hhvm
matrix:
fast_finish: true
allow_failures:
- php: hhvm
script: ./.travis.sh
include:
- php: 5.2
dist: precise
- php: 5.3
dist: precise
- php: 5.4
dist: trusty
- php: 5.5
dist: trusty
- php: 5.6
dist: trusty
- php: 7.0
dist: trusty
- php: 7.1
dist: trusty
- php: 7.2
dist: trusty
install:
- pear upgrade --force --alldeps pear/pear
- pear install package.xml
script:
- pear run-tests -qr tests/
- for i in `find tests/ -name '*.out'`; do echo "$i"; cat "$i"; done
5 changes: 3 additions & 2 deletions tests/longfilename.phpt
Expand Up @@ -22,8 +22,9 @@ echo 'tests done';
?>
--CLEAN--
<?php
@unlink('testlongfilename.tar');
system('rm -r longfilenamedir');
$dirname = dirname(__FILE__);
unlink($dirname . '/testlongfilename.tar');
system("rm -r $dirname/longfilenamedir");
?>
--EXPECT--
tests done

0 comments on commit 57b7a7d

Please sign in to comment.