You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by pt...@apache.org on 2022/10/20 06:21:26 UTC

[ignite] branch master updated: IGNITE-17939 Fail build on error in dotnetdoc or cppdoc (#10336)

This is an automated email from the ASF dual-hosted git repository.

ptupitsyn pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ignite.git


The following commit(s) were added to refs/heads/master by this push:
     new 15b44aa6e97 IGNITE-17939 Fail build on error in dotnetdoc or cppdoc (#10336)
15b44aa6e97 is described below

commit 15b44aa6e972f24bbcd15434c7abe00033df3ee6
Author: Pavel Tupitsyn <pt...@apache.org>
AuthorDate: Thu Oct 20 09:21:19 2022 +0300

    IGNITE-17939 Fail build on error in dotnetdoc or cppdoc (#10336)
---
 modules/clients/pom.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/modules/clients/pom.xml b/modules/clients/pom.xml
index e3bcd851fa2..15b806af5fe 100644
--- a/modules/clients/pom.xml
+++ b/modules/clients/pom.xml
@@ -189,7 +189,7 @@
                                 <phase>prepare-package</phase>
                                 <configuration>
                                     <target>
-                                        <exec executable="${docfx.exec}" searchpath="true" dir="../platforms/dotnet/docfx/">
+                                        <exec executable="${docfx.exec}" searchpath="true" dir="../platforms/dotnet/docfx/" failonerror="true">
                                             <arg value="Apache.Ignite.docfx.json" />
                                         </exec>
                                     </target>
@@ -204,7 +204,7 @@
                                 <phase>prepare-package</phase>
                                 <configuration>
                                     <target>
-                                        <exec executable="${doxygen.exec}" searchpath="true" dir="../platforms/cpp/">
+                                        <exec executable="${doxygen.exec}" searchpath="true" dir="../platforms/cpp/" failonerror="true">
                                             <arg value="cpp.dxg" />
                                         </exec>
                                     </target>