summary refs log tree commit diff stats
path: root/koch.nim
diff options
context:
space:
mode:
authorTimothee Cour <timothee.cour2@gmail.com>2021-04-18 06:34:29 -0700
committerGitHub <noreply@github.com>2021-04-18 15:34:29 +0200
commit42c6eec4ef7752c4f48ace2899a44840df95da9c (patch)
treeac5f75f4f35bebd1c468f98de05694ed8c1afe7f /koch.nim
parentca3fe63bab54779e6dc2df3c9a72b9c4280c0eaf (diff)
downloadNim-42c6eec4ef7752c4f48ace2899a44840df95da9c.tar.gz
fix #17749 ignore SIGPIPE signals, fix nim CI #17748 (#17752)
* fix #17749 SIGPIPE

* fix for windows
Diffstat (limited to 'koch.nim')
-rw-r--r--koch.nim4
1 files changed, 4 insertions, 0 deletions
diff --git a/koch.nim b/koch.nim
index 3e41310d7..49540eb6a 100644
--- a/koch.nim
+++ b/koch.nim
@@ -542,6 +542,10 @@ proc runCI(cmd: string) =
   # boot without -d:nimHasLibFFI to make sure this still works
   kochExecFold("Boot in release mode", "boot -d:release -d:nimStrictMode")
 
+  when false: # debugging: when you need to run only 1 test in CI, use something like this:
+    execFold("debugging test", "nim r tests/stdlib/tosproc.nim")
+    doAssert false, "debugging only"
+
   ## build nimble early on to enable remainder to depend on it if needed
   kochExecFold("Build Nimble", "nimble")