summary refs log tree commit diff stats
path: root/tools
diff options
context:
space:
mode:
authorMiran <narimiran@disroot.org>2020-07-25 22:56:37 +0200
committerGitHub <noreply@github.com>2020-07-25 22:56:37 +0200
commit5c4e2bf68e067507ce0f26c93737b302bbeb5103 (patch)
tree246723abebc54a83f82bf307fe1c196ef2139f2f /tools
parent33c2d7bfc4fa5ab34fad35c11a384e6945aa6281 (diff)
downloadNim-5c4e2bf68e067507ce0f26c93737b302bbeb5103.tar.gz
fix nightlies: smaller log files (#15074)
Hopefully this will fix
"The job exceeded the maximum log length, and has been terminated."
Diffstat (limited to 'tools')
-rw-r--r--tools/kochdocs.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/kochdocs.nim b/tools/kochdocs.nim
index 8a8406a69..05ddb4f1e 100644
--- a/tools/kochdocs.nim
+++ b/tools/kochdocs.nim
@@ -8,7 +8,7 @@ const
   gaCode* = " --doc.googleAnalytics:UA-48159761-1"
   # errormax: subsequent errors are probably consequences of 1st one; a simple
   # bug could cause unlimited number of errors otherwise, hard to debug in CI.
-  nimArgs = "--errormax:3 --hint:Conf:off --hint:Path:off --hint:Processing:off -d:boot --putenv:nimversion=$#" % system.NimVersion
+  nimArgs = "--errormax:3 --hint:Conf:off --hint:Path:off --hint:Processing:off --hint:XDeclaredButNotUsed:off --warning:UnusedImport:off -d:boot --putenv:nimversion=$#" % system.NimVersion
   gitUrl = "https://github.com/nim-lang/Nim"
   docHtmlOutput = "doc/html"
   webUploadOutput = "web/upload"