diff options
Diffstat (limited to 'koch.nim')
-rw-r--r-- | koch.nim | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/koch.nim b/koch.nim index c84cc9be4..e15215df0 100644 --- a/koch.nim +++ b/koch.nim @@ -613,6 +613,10 @@ proc runCI(cmd: string) = execFold("Run nimsuggest tests", "nim r nimsuggest/tester") execFold("Run atlas tests", "nim c -r -d:atlasTests atlas/atlas.nim clone https://github.com/disruptek/balls") + # compile it again to get rid of `-d:atlasTests`: + nimCompileFold("Compile atlas", "atlas/atlas.nim", options = "-d:release ", + outputName = "atlas") + execFold("Run more atlas tests", "nim c -r atlas/tester.nim") kochExecFold("Testing booting in refc", "boot -d:release --mm:refc -d:nimStrictMode --lib:lib") |