2
0
Эх сурвалжийг харах

[AppVeyor] Rearranged targets order. Skip zipping dox output.

Andy Li 10 жил өмнө
parent
commit
c993a09257
1 өөрчлөгдсөн 7 нэмэгдсэн , 2 устгасан
  1. 7 2
      tests/RunCi.hx

+ 7 - 2
tests/RunCi.hx

@@ -422,7 +422,7 @@ class RunCi {
 			case TravisCI:
 				[Sys.getEnv("TEST")];
 			case AppVeyor:
-				[Macro, Neko, Cs];
+				[Neko, Cs, Macro];
 		}
 		Sys.println('Going to test: $tests');
 
@@ -450,7 +450,12 @@ class RunCi {
 					changeDirectory(getHaxelibPath("dox"));
 					runCommand("haxe", ["run.hxml"]);
 					runCommand("haxe", ["gen.hxml"]);
-					haxelibRun(["dox", "-o", "bin/api.zip", "-i", "bin/xml"]);
+					switch (ci) {
+						case AppVeyor:
+							//do not build zip to save time
+						case _:
+							haxelibRun(["dox", "-o", "bin/api.zip", "-i", "bin/xml"]);
+					}
 
 					//BYTECODE
 					switch (ci) {