ソースを参照

[AppVeyor] do not test BYTECODE=1 in order to save time...
We have never shipped the bytecode version of the compiler anyway.

Andy Li 10 年 前
コミット
01cbe8d5c2
1 ファイル変更5 行追加4 行削除
  1. 5 4
      tests/RunCi.hx

+ 5 - 4
tests/RunCi.hx

@@ -547,10 +547,11 @@ class RunCi {
 							changeDirectory(unitDir);
 							runCommand("haxe", ["compile-macro.hxml"]);
 						case AppVeyor:
-							changeDirectory(repoDir);
-							runCommand(Sys.getEnv("CYG_ROOT") + "/bin/bash", ["-lc", 'cd \"$$OLDPWD\" && make -s -f Makefile.win WODI=wodi${Sys.getEnv("WODI_ARCH")} OCAMLC=ocamlc.opt BYTECODE=1']);
-							changeDirectory(unitDir);
-							runCommand("haxe", ["compile-macro.hxml"]);
+							// save time...
+							// changeDirectory(repoDir);
+							// runCommand(Sys.getEnv("CYG_ROOT") + "/bin/bash", ["-lc", 'cd \"$$OLDPWD\" && make -s -f Makefile.win WODI=wodi${Sys.getEnv("WODI_ARCH")} OCAMLC=ocamlc.opt BYTECODE=1']);
+							// changeDirectory(unitDir);
+							// runCommand("haxe", ["compile-macro.hxml"]);
 					}
 				case Neko:
 					runCommand("haxe", ["compile-neko.hxml"]);