summary refs log tree commit diff stats
path: root/koch.nim
diff options
context:
space:
mode:
authorAndreas Rumpf <rumpf_a@web.de>2021-06-26 03:39:52 +0200
committerGitHub <noreply@github.com>2021-06-25 21:39:52 -0400
commit39fbf3c84bd83613407e22b3de215d9a221b9422 (patch)
tree554d768384aa23c90b896be643e03a268e1d55ca /koch.nim
parentf6bea08eac7938e460ca9088693f0cf3f274e75b (diff)
downloadNim-39fbf3c84bd83613407e22b3de215d9a221b9422.tar.gz
ensure 'koch boot --gc:orc' stays green (#18353)
* ensure 'koch boot --gc:orc' stays green

* disable for C++ code generator for now
Diffstat (limited to 'koch.nim')
-rw-r--r--koch.nim5
1 files changed, 5 insertions, 0 deletions
diff --git a/koch.nim b/koch.nim
index 51be53cc7..6a0b7a0d3 100644
--- a/koch.nim
+++ b/koch.nim
@@ -582,6 +582,11 @@ proc runCI(cmd: string) =
     when defined(posix):
       execFold("Run nimsuggest tests", "nim r nimsuggest/tester")
 
+  when not defined(bsd):
+    if not doUseCpp:
+      # the BSDs are overwhelmed already, so only run this test on the other machines:
+      kochExecFold("Boot Nim ORC", "boot -d:release --gc:orc --lib:lib")
+
 proc testUnixInstall(cmdLineRest: string) =
   csource("-d:danger" & cmdLineRest)
   xz(false, cmdLineRest)