12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- package runci.targets;
- import sys.FileSystem;
- import runci.System.*;
- import runci.Config.*;
- using StringTools;
- class Java {
- static var miscJavaDir(get,never):String;
- static inline function get_miscJavaDir() return miscDir + 'java/';
- static public function getJavaDependencies() {
- haxelibInstallGit("HaxeFoundation", "hxjava", true);
- runCommand("javac", ["-version"]);
- }
- static public function run(args:Array<String>) {
- deleteDirectoryRecursively("bin/java");
- getJavaDependencies();
- runCommand("haxe", ["compile-java.hxml"].concat(args));
- runCommand("java", ["-jar", "bin/java/TestMain-Debug.jar"]);
- runCommand("haxe", ["compile-java.hxml","-dce","no"].concat(args));
- runCommand("java", ["-jar", "bin/java/TestMain-Debug.jar"]);
- changeDirectory(miscJavaDir);
- runCommand("haxe", ["run.hxml"]);
- changeDirectory(sysDir);
- runCommand("haxe", ["compile-java.hxml"].concat(args));
- runCommand("java", ["-jar", "bin/java/Main-Debug.jar"]);
- changeDirectory(eventLoopDir);
- runCommand("haxe", ["build.hxml", "-java", "bin/java"].concat(args));
- runCommand("java", ["-jar", "bin/java/Main.jar"]);
- // changeDirectory(threadsDir);
- // runCommand("haxe", ["build.hxml", "-java", "export/java"].concat(args));
- // if (systemName != "Windows") { // #8154
- // runCommand("java", ["-jar", "export/java/Main.jar"]);
- // }
- infoMsg("Testing java-lib extras");
- changeDirectory('$unitDir/bin');
- if (!FileSystem.exists('java-lib-tests')) {
- runCommand("git", ["clone", "https://github.com/waneck/java-lib-tests.git", "--depth", "1"], true);
- }
- for (dir in FileSystem.readDirectory('java-lib-tests'))
- {
- var path = 'java-lib-tests/$dir';
- if (FileSystem.isDirectory(path)) for (file in FileSystem.readDirectory(path))
- {
- if (file.endsWith('.hxml'))
- {
- runCommand("haxe", ["--cwd",'java-lib-tests/$dir',file]);
- }
- }
- }
- }
- }
|