Ver Fonte

check if bytecode issue resolved itself

Simon Krajewski há 11 anos atrás
pai
commit
65c5856048
1 ficheiros alterados com 8 adições e 9 exclusões
  1. 8 9
      tests/RunTravis.hx

+ 8 - 9
tests/RunTravis.hx

@@ -305,7 +305,7 @@ class RunTravis {
 			case "Mac":
 				//pass
 		}
-		
+
 		runCommand("node", ["-v"]);
 	}
 
@@ -395,14 +395,13 @@ class RunTravis {
 				haxelibRun(["dox", "-o", "bin/api.zip", "-i", "bin/xml"]);
 
 				//BYTECODE
-				// disabled until https://github.com/HaxeFoundation/haxe/issues/3184 is resolved
-				//if (Sys.getEnv("TRAVIS") == "true") {
-					//changeDirectory(repoDir);
-					//runCommand("make", ["BYTECODE=1"]);
-					//runCommand("sudo", ["make", "install"]);
-					//changeDirectory(unitDir);
-					//runCommand("haxe", ["compile-macro.hxml"]);
-				//}
+				if (Sys.getEnv("TRAVIS") == "true") {
+					changeDirectory(repoDir);
+					runCommand("make", ["BYTECODE=1"]);
+					runCommand("sudo", ["make", "install"]);
+					changeDirectory(unitDir);
+					runCommand("haxe", ["compile-macro.hxml"]);
+				}
 			case Neko:
 				runCommand("haxe", ["compile-neko.hxml"]);
 				runCommand("neko", ["unit.n"]);