diff options
author | Sven Gothel <[email protected]> | 2020-01-02 05:44:50 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2020-01-02 05:44:50 +0100 |
commit | 51e73653a35bd041384f201090b49ff601e4a5e7 (patch) | |
tree | 880408bf4b28e8d28ac4386db2d2f490aa56c0b8 /make/build.xml | |
parent | a4eb7f17f871ded72163c649be403ccad38a6669 (diff) |
Handle special junit treatment via make/lib/gluegen-cpptasks* (i.e. iOS)
Otherwise the build won't produce dummy junit test results for jenkins etc.
Diffstat (limited to 'make/build.xml')
-rw-r--r-- | make/build.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/make/build.xml b/make/build.xml index 1dc6595..f147f3d 100644 --- a/make/build.xml +++ b/make/build.xml @@ -1275,11 +1275,11 @@ <echo message='gluegen.build.sha.natives=${gluegen.build.sha.natives}${line.separator}' file="${build}/artifact.properties" append="true"/> </target> - <target name="junit.compile" depends="init" if="${build.dynamiclibs}"> + <target name="junit.compile" depends="init"> <ant antfile="build-test.xml" target="junit.compile"/> </target> - <target name="junit.run" depends="init,junit.compile" if="${build.dynamiclibs}"> + <target name="junit.run" depends="init,junit.compile"> <ant antfile="build-test.xml" target="junit.run"/> </target> |