Revision: 77218
          http://sourceforge.net/p/brlcad/code/77218
Author:   starseeker
Date:     2020-09-24 21:20:54 +0000 (Thu, 24 Sep 2020)
Log Message:
-----------
Since even serial building isn't guaranteeing stable outcomes, go ahead and 
re-enable parallel.

Modified Paths:
--------------
    brlcad/trunk/misc/repoconv/github_ci_actions.yml

Modified: brlcad/trunk/misc/repoconv/github_ci_actions.yml
===================================================================
--- brlcad/trunk/misc/repoconv/github_ci_actions.yml    2020-09-24 20:55:45 UTC 
(rev 77217)
+++ brlcad/trunk/misc/repoconv/github_ci_actions.yml    2020-09-24 21:20:54 UTC 
(rev 77218)
@@ -182,16 +182,16 @@
            set(BCNT 0)
            set(result 1)
            while(result AND ${BCNT} LESS 4)
-             execute_process(COMMAND cmake --build build -j 1 --config Release 
--target ALL_BUILD RESULT_VARIABLE result)
+             execute_process(COMMAND cmake --build build --config Release 
--target ALL_BUILD RESULT_VARIABLE result)
              if (NOT ${result})
                execute_process(COMMAND powershell Write-VolumeCache C)
                execute_process(COMMAND powershell Write-VolumeCache D)
-               execute_process(COMMAND cmake --build build -j 1 --config 
Release --target check RESULT_VARIABLE result)
+               execute_process(COMMAND cmake --build build --config Release 
--target check RESULT_VARIABLE result)
              endif()
              if (NOT ${result})
                execute_process(COMMAND powershell Write-VolumeCache C)
                execute_process(COMMAND powershell Write-VolumeCache D)
-               execute_process(COMMAND cmake --build build -j 1 --verbose 
--config Release --target PACKAGE RESULT_VARIABLE result)
+               execute_process(COMMAND cmake --build build --config Release 
--target PACKAGE RESULT_VARIABLE result)
              endif()
              math(EXPR BCNT "${BCNT}+1")
            endwhile()
@@ -201,14 +201,14 @@
            set(BCNT 0)
            set(result 1)
            while(result AND ${BCNT} LESS 4)
-             execute_process(COMMAND cmake --build build -j 1 --config Release 
--target all RESULT_VARIABLE result)
+             execute_process(COMMAND cmake --build build --config Release 
--target all RESULT_VARIABLE result)
              if (NOT ${result})
                execute_process(COMMAND sync)
-               execute_process(COMMAND cmake --build build -j 1 --config 
Release --target check RESULT_VARIABLE result)
+               execute_process(COMMAND cmake --build build --config Release 
--target check RESULT_VARIABLE result)
              endif()
              if (NOT ${result})
                execute_process(COMMAND sync)
-               execute_process(COMMAND cmake --build build -j 1 --verbose 
--config Release --target package RESULT_VARIABLE result)
+               execute_process(COMMAND cmake --build build --config Release 
--target package RESULT_VARIABLE result)
              endif()
              math(EXPR BCNT "${BCNT}+1")
            endwhile()

This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.



_______________________________________________
BRL-CAD Source Commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/brlcad-commits

Reply via email to