소스 검색

[AppVeyor] Rebuild hxcpp for m32 only.

Andy Li 10 년 전
부모
커밋
181922fa67
1개의 변경된 파일6개의 추가작업 그리고 1개의 파일을 삭제
  1. 6 1
      tests/RunCi.hx

+ 6 - 1
tests/RunCi.hx

@@ -356,7 +356,12 @@ class RunCi {
 			changeDirectory(getHaxelibPath("hxcpp") + "tools/hxcpp/");
 			runCommand("haxe", ["compile.hxml"]);
 			changeDirectory(getHaxelibPath("hxcpp") + "project/");
-			runCommand("neko", ["build.n"]);
+			switch (ci) {
+				case AppVeyor:
+					runCommand("neko", ["build.n", "windows-m32"]);
+				case _:
+					runCommand("neko", ["build.n"]);
+			}
 			changeDirectory(oldDir);
 		}