Browse Source

[php] only test agains 7.0 & 7.1

Aleksandr Kuzmenko 6 years ago
parent
commit
a7f7f5b17c
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tests/runci/targets/Php.hx

+ 1 - 1
tests/runci/targets/Php.hx

@@ -65,7 +65,7 @@ class Php {
 
 
 	static function runThroughPhpVersions(fn:()->Void) {
 	static function runThroughPhpVersions(fn:()->Void) {
 	if(isCi() && systemName == "Linux") {
 	if(isCi() && systemName == "Linux") {
-			for(version in ['7.0', '7.1', '7.2', '7.3']) {
+			for(version in ['7.0', '7.1'/*, '7.2', '7.3'*/]) { //7.2 and 7.3 are not available on travis Ubuntu trusty
 				runCommand("phpenv", ["global", version]);
 				runCommand("phpenv", ["global", version]);
 				fn();
 				fn();
 			}
 			}