summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorMiran <narimiran@disroot.org>2020-02-24 09:41:28 +0100
committerGitHub <noreply@github.com>2020-02-24 09:41:28 +0100
commit3e8858d6947b0607b82bbe3ed0a82053280e530f (patch)
tree56378eeef041074413a9b09f052601d3ceba6985
parent3dad130034e3212159dda5d61988ca2b18959b24 (diff)
downloadNim-3e8858d6947b0607b82bbe3ed0a82053280e530f.tar.gz
add more files to the ignore list, hopefully fixes nightlies on windows (#13474)
-rw-r--r--tools/kochdocs.nim20
1 files changed, 13 insertions, 7 deletions
diff --git a/tools/kochdocs.nim b/tools/kochdocs.nim
index 09b3268d1..9017fdf69 100644
--- a/tools/kochdocs.nim
+++ b/tools/kochdocs.nim
@@ -232,7 +232,10 @@ compiler/ccgstmts.nim
 compiler/ccgthreadvars.nim
 compiler/ccgtrav.nim
 compiler/ccgtypes.nim
+compiler/hlo.nim
 compiler/jstypes.nim
+compiler/packagehandling.nim
+compiler/rodimpl.nim
 compiler/semcall.nim
 compiler/semexprs.nim
 compiler/semfields.nim
@@ -245,30 +248,33 @@ compiler/semtempl.nim
 compiler/semtypes.nim
 compiler/sizealignoffsetimpl.nim
 compiler/suggest.nim
-compiler/packagehandling.nim
-compiler/hlo.nim
-compiler/rodimpl.nim
-compiler/vmops.nim
 compiler/vmhooks.nim
+compiler/vmops.nim
 """.splitWhitespace()
 
   # not include files but doesn't work; not included/imported anywhere; dead code?
   const bad = """
-compiler/debuginfo.nim
 compiler/canonicalizer.nim
+compiler/debuginfo.nim
 compiler/forloops.nim
 """.splitWhitespace()
 
   # these cause errors even though they're imported (some of which are mysterious)
   const bad2 = """
+compiler/aliases.nim
+compiler/ast.nim
+compiler/astalgo.nim
 compiler/closureiters.nim
-compiler/tccgen.nim
+compiler/evalffi.nim
 compiler/lambdalifting.nim
 compiler/layouter.nim
-compiler/evalffi.nim
 compiler/nimfix/nimfix.nim
 compiler/plugins/active.nim
 compiler/plugins/itersgen.nim
+compiler/renderer.nim
+compiler/tccgen.nim
+compiler/trees.nim
+compiler/types.nim
 """.splitWhitespace()
 
   for a in walkDirRec("compiler"):