This is an automated email from the ASF dual-hosted git repository.
jtulach pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/netbeans.git
The following commit(s) were added to refs/heads/master by this push:
new 33c52ff Always call mx build before running the java.mx.projects tests
new 129660d Merge pull request #3435 from
JaroslavTulach/jtulach/AlwaysBuildWithMx
33c52ff is described below
commit 33c52ffafff78b3290315566f2b24a7dd411719e
Author: Jaroslav Tulach <[email protected]>
AuthorDate: Mon Jan 10 10:34:33 2022 +0100
Always call mx build before running the java.mx.projects tests
---
java/java.mx.project/build.xml | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/java/java.mx.project/build.xml b/java/java.mx.project/build.xml
index b7747e0..b02e9fc 100644
--- a/java/java.mx.project/build.xml
+++ b/java/java.mx.project/build.xml
@@ -24,7 +24,7 @@
<property name="mx.dir" value="${graal.dir}/../mx"/>
<available property="graal.dir.available" file="${graal.dir}/LICENSE"/>
- <target name="test-preinit" unless="graal.dir.available">
+ <target name="-checkout-graalvm" unless="graal.dir.available">
<delete dir="${graal.dir}"/>
<mkdir dir="${graal.dir}/.."/>
<exec dir="${graal.dir}/.." executable="git" failonerror="true">
@@ -45,6 +45,9 @@
<arg value="--single-branch"/>
<arg value="https://github.com/graalvm/mx"/>
</exec>
+ </target>
+
+ <target name="test-preinit" depends="-checkout-graalvm">
<exec dir="${graal.dir}/truffle" executable="${mx.dir}/mx"
failonerror="true">
<arg value="build"/>
</exec>
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]
For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists