koch.nim 30 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764
  1. #
  2. #
  3. # Maintenance program for Nim
  4. # (c) Copyright 2024 Andreas Rumpf
  5. #
  6. # See the file "copying.txt", included in this
  7. # distribution, for details about the copyright.
  8. #
  9. # See doc/koch.md for documentation.
  10. #
  11. const
  12. # examples of possible values for repos: Head, ea82b54
  13. NimbleStableCommit = "123f97a5e4ee9ba35720c0869e19a047c43c797e" # 0.16.4
  14. AtlasStableCommit = "5faec3e9a33afe99a7d22377dd1b45a5391f5504"
  15. ChecksumsStableCommit = "bd9bf4eaea124bf8d01e08f92ac1b14c6879d8d3"
  16. SatStableCommit = "faf1617f44d7632ee9601ebc13887644925dcc01"
  17. # examples of possible values for fusion: #head, #ea82b54, 1.2.3
  18. FusionStableHash = "#372ee4313827ef9f2ea388840f7d6b46c2b1b014"
  19. HeadHash = "#head"
  20. when not defined(windows):
  21. const
  22. Z3StableCommit = "65de3f748a6812eecd7db7c478d5fc54424d368b" # the version of Z3 that DrNim uses
  23. when defined(gcc) and defined(windows):
  24. when defined(x86):
  25. {.link: "icons/koch.res".}
  26. else:
  27. {.link: "icons/koch_icon.o".}
  28. when defined(amd64) and defined(windows) and defined(vcc):
  29. {.link: "icons/koch-amd64-windows-vcc.res".}
  30. when defined(i386) and defined(windows) and defined(vcc):
  31. {.link: "icons/koch-i386-windows-vcc.res".}
  32. import std/[os, strutils, parseopt, osproc]
  33. # Using `std/os` instead of `os` to fail early if config isn't set up properly.
  34. # If this fails with: `Error: cannot open file: std/os`, see
  35. # https://github.com/nim-lang/Nim/pull/14291 for explanation + how to fix.
  36. when defined(nimPreviewSlimSystem):
  37. import std/[assertions, syncio]
  38. import tools / kochdocs
  39. import tools / deps
  40. const VersionAsString = system.NimVersion
  41. const
  42. HelpText = """
  43. +-----------------------------------------------------------------+
  44. | Maintenance program for Nim |
  45. | Version $1|
  46. | (c) 2024 Andreas Rumpf |
  47. +-----------------------------------------------------------------+
  48. Build time: $2, $3
  49. Usage:
  50. koch [options] command [options for command]
  51. Options:
  52. --help, -h shows this help and quits
  53. --latest bundle the installers with bleeding edge versions of
  54. external components.
  55. --stable bundle the installers with stable versions of
  56. external components (default).
  57. --nim:path use specified path for nim binary
  58. --localdocs[:path] only build local documentations. If a path is not
  59. specified (or empty), the default is used.
  60. --skipIntegrityCheck skips integrity check when booting the compiler
  61. Possible Commands:
  62. boot [options] bootstraps with given command line options
  63. distrohelper [bindir] helper for distro packagers
  64. tools builds Nim related tools
  65. toolsNoExternal builds Nim related tools (except external tools,
  66. e.g. nimble)
  67. doesn't require network connectivity
  68. nimble builds the Nimble tool
  69. atlas builds the Atlas tool
  70. checksums installs the checksums dependency
  71. fusion installs fusion via Nimble
  72. Boot options:
  73. -d:release produce a release version of the compiler
  74. -d:nimUseLinenoise use the linenoise library for interactive mode
  75. `nim secret` (not needed on Windows)
  76. -d:leanCompiler produce a compiler without JS codegen or
  77. documentation generator in order to use less RAM
  78. for bootstrapping
  79. Commands for core developers:
  80. runCI runs continuous integration (CI), e.g. from Github Actions
  81. docs [options] generates the full documentation
  82. csource -d:danger builds the C sources for installation
  83. pdf builds the PDF documentation
  84. zip builds the installation zip package
  85. xz builds the installation tar.xz package
  86. testinstall test tar.xz package; Unix only!
  87. installdeps [options] installs external dependency (e.g. tinyc) to dist/
  88. tests [options] run the testsuite (run a subset of tests by
  89. specifying a category, e.g. `tests cat async`)
  90. temp options creates a temporary compiler for testing
  91. """
  92. let kochExe* = when isMainModule: os.getAppFilename() # always correct when koch is main program, even if `koch` exe renamed e.g.: `nim c -o:koch_debug koch.nim`
  93. else: getAppDir() / "koch".exe # works for winrelease
  94. proc kochExec*(cmd: string) =
  95. exec kochExe.quoteShell & " " & cmd
  96. proc kochExecFold*(desc, cmd: string) =
  97. execFold(desc, kochExe.quoteShell & " " & cmd)
  98. template withDir(dir, body) =
  99. let old = getCurrentDir()
  100. try:
  101. setCurrentDir(dir)
  102. body
  103. finally:
  104. setCurrentDir(old)
  105. let origDir = getCurrentDir()
  106. setCurrentDir(getAppDir())
  107. proc tryExec(cmd: string): bool =
  108. echo(cmd)
  109. result = execShellCmd(cmd) == 0
  110. proc safeRemove(filename: string) =
  111. if fileExists(filename): removeFile(filename)
  112. proc overwriteFile(source, dest: string) =
  113. safeRemove(dest)
  114. moveFile(source, dest)
  115. proc copyExe(source, dest: string) =
  116. safeRemove(dest)
  117. copyFile(dest=dest, source=source)
  118. inclFilePermissions(dest, {fpUserExec, fpGroupExec, fpOthersExec})
  119. const
  120. compileNimInst = "tools/niminst/niminst"
  121. distDir = "dist"
  122. proc csource(args: string) =
  123. nimexec(("cc $1 -r $3 --var:version=$2 --var:mingw=none csource " &
  124. "--main:compiler/nim.nim compiler/installer.ini $1") %
  125. [args, VersionAsString, compileNimInst])
  126. proc bundleC2nim(args: string) =
  127. cloneDependency(distDir, "https://github.com/nim-lang/c2nim.git")
  128. nimCompile("dist/c2nim/c2nim",
  129. options = "--noNimblePath --path:. " & args)
  130. proc bundleNimbleExe(latest: bool, args: string) =
  131. let commit = if latest: "HEAD" else: NimbleStableCommit
  132. cloneDependency(distDir, "https://github.com/nim-lang/nimble.git",
  133. commit = commit, allowBundled = true)
  134. updateSubmodules(distDir / "nimble", allowBundled = true)
  135. nimCompile("dist/nimble/src/nimble.nim",
  136. options = "-d:release --mm:refc --noNimblePath " & args)
  137. const zippyTests = "dist/nimble/vendor/zippy/tests"
  138. if dirExists(zippyTests):
  139. removeDir(zippyTests)
  140. proc bundleAtlasExe(latest: bool, args: string) =
  141. let commit = if latest: "HEAD" else: AtlasStableCommit
  142. cloneDependency(distDir, "https://github.com/nim-lang/atlas.git",
  143. commit = commit, allowBundled = true)
  144. cloneDependency(distDir / "atlas" / distDir, "https://github.com/nim-lang/sat.git",
  145. commit = SatStableCommit, allowBundled = true)
  146. # installer.ini expects it under $nim/bin
  147. nimCompile("dist/atlas/src/atlas.nim",
  148. options = "-d:release --noNimblePath -d:nimAtlasBootstrap " & args)
  149. proc bundleNimsuggest(args: string) =
  150. nimCompileFold("Compile nimsuggest", "nimsuggest/nimsuggest.nim",
  151. options = "-d:danger " & args)
  152. proc buildVccTool(args: string) =
  153. let input = "tools/vccexe/vccexe.nim"
  154. if contains(args, "--cc:vcc"):
  155. nimCompileFold("Compile Vcc", input, "build", options = args)
  156. let fileName = input.splitFile.name
  157. moveFile(exe("build" / fileName), exe("bin" / fileName))
  158. else:
  159. nimCompileFold("Compile Vcc", input, options = args)
  160. proc bundleNimpretty(args: string) =
  161. nimCompileFold("Compile nimpretty", "nimpretty/nimpretty.nim",
  162. options = "-d:release " & args)
  163. proc bundleWinTools(args: string) =
  164. nimCompile("tools/finish.nim", outputDir = "", options = args)
  165. buildVccTool(args)
  166. nimCompile("tools/nimgrab.nim", options = "-d:ssl " & args)
  167. nimCompile("tools/nimgrep.nim", options = args)
  168. nimCompile("testament/testament.nim", options = args)
  169. when false:
  170. # not yet a tool worth including
  171. nimCompile(r"tools\downloader.nim",
  172. options = r"--cc:vcc --app:gui -d:ssl --noNimblePath --path:..\ui " & args)
  173. proc bundleChecksums(latest: bool) =
  174. let commit = if latest: "HEAD" else: ChecksumsStableCommit
  175. cloneDependency(distDir, "https://github.com/nim-lang/checksums.git", commit, allowBundled = true)
  176. proc zip(latest: bool; args: string) =
  177. bundleChecksums(latest)
  178. bundleNimbleExe(latest, args)
  179. bundleAtlasExe(latest, args)
  180. bundleNimsuggest(args)
  181. bundleNimpretty(args)
  182. bundleWinTools(args)
  183. nimexec("cc -r $2 --var:version=$1 --var:mingw=none --main:compiler/nim.nim scripts compiler/installer.ini" %
  184. [VersionAsString, compileNimInst])
  185. exec("$# --var:version=$# --var:mingw=none --main:compiler/nim.nim zip compiler/installer.ini" %
  186. ["tools/niminst/niminst".exe, VersionAsString])
  187. proc ensureCleanGit() =
  188. let (outp, status) = osproc.execCmdEx("git diff")
  189. if outp.len != 0:
  190. quit "Not a clean git repository; 'git diff' not empty!"
  191. if status != 0:
  192. quit "Not a clean git repository; 'git diff' returned non-zero!"
  193. proc xz(latest: bool; args: string) =
  194. ensureCleanGit()
  195. nimexec("cc -r $2 --var:version=$1 --var:mingw=none --main:compiler/nim.nim scripts compiler/installer.ini" %
  196. [VersionAsString, compileNimInst])
  197. exec("$# --var:version=$# --var:mingw=none --main:compiler/nim.nim xz compiler/installer.ini" %
  198. ["tools" / "niminst" / "niminst".exe, VersionAsString])
  199. proc buildTool(toolname, args: string) =
  200. nimexec("cc $# $#" % [args, toolname])
  201. copyFile(dest="bin" / splitFile(toolname).name.exe, source=toolname.exe)
  202. proc buildTools(args: string = "") =
  203. bundleNimsuggest(args)
  204. nimCompileFold("Compile nimgrep", "tools/nimgrep.nim",
  205. options = "-d:release " & args)
  206. when defined(windows): buildVccTool(args)
  207. bundleNimpretty(args)
  208. nimCompileFold("Compile testament", "testament/testament.nim", options = "-d:release " & args)
  209. # pre-packages a debug version of nim which can help in many cases investigate issuses
  210. # withouth having to rebuild compiler.
  211. # `-d:nimDebugUtils` only makes sense when temporarily editing/debugging compiler
  212. # `-d:debug` should be changed to a flag that doesn't require re-compiling nim
  213. # `--opt:speed` is a sensible default even for a debug build, it doesn't affect nim stacktraces
  214. nimCompileFold("Compile nim_dbg", "compiler/nim.nim", options =
  215. "--opt:speed --stacktrace -d:debug --stacktraceMsgs -d:nimCompilerStacktraceHints " & args,
  216. outputName = "nim_dbg")
  217. proc testTools(args: string = "") =
  218. nimCompileFold("Compile nimgrep", "tools/nimgrep.nim",
  219. options = "-d:release " & args)
  220. when defined(windows): buildVccTool(args)
  221. bundleNimpretty(args)
  222. nimCompileFold("Compile testament", "testament/testament.nim", options = "-d:release " & args)
  223. proc nsis(latest: bool; args: string) =
  224. bundleChecksums(latest)
  225. bundleNimbleExe(latest, args)
  226. bundleAtlasExe(latest, args)
  227. bundleNimsuggest(args)
  228. bundleWinTools(args)
  229. # make sure we have generated the niminst executables:
  230. buildTool("tools/niminst/niminst", args)
  231. #buildTool("tools/nimgrep", args)
  232. # produce 'nim_debug.exe':
  233. #exec "nim c compiler" / "nim.nim"
  234. #copyExe("compiler/nim".exe, "bin/nim_debug".exe)
  235. exec(("tools" / "niminst" / "niminst --var:version=$# --var:mingw=mingw$#" &
  236. " nsis compiler/installer.ini") % [VersionAsString, $(sizeof(pointer)*8)])
  237. proc geninstall(args="") =
  238. nimexec("cc -r $# --var:version=$# --var:mingw=none --main:compiler/nim.nim scripts compiler/installer.ini $#" %
  239. [compileNimInst, VersionAsString, args])
  240. proc install(args: string) =
  241. geninstall()
  242. exec("sh ./install.sh $#" % args)
  243. # -------------- boot ---------------------------------------------------------
  244. proc findStartNim: string =
  245. # we try several things before giving up:
  246. # * nimExe
  247. # * bin/nim
  248. # * $PATH/nim
  249. # If these fail, we try to build nim with the "build.(sh|bat)" script.
  250. let (nim, ok) = findNimImpl()
  251. if ok: return nim
  252. when defined(posix):
  253. const buildScript = "build.sh"
  254. if fileExists(buildScript):
  255. if tryExec("./" & buildScript): return "bin" / nim
  256. else:
  257. const buildScript = "build.bat"
  258. if fileExists(buildScript):
  259. if tryExec(buildScript): return "bin" / nim
  260. echo("Found no nim compiler and every attempt to build one failed!")
  261. quit("FAILURE")
  262. proc thVersion(i: int): string =
  263. result = ("compiler" / "nim" & $i).exe
  264. template doUseCpp(): bool = getEnv("NIM_COMPILE_TO_CPP", "false") == "true"
  265. proc boot(args: string, skipIntegrityCheck: bool) =
  266. ## bootstrapping is a process that involves 3 steps:
  267. ## 1. use csourcesAny to produce nim1.exe. This nim1.exe is buggy but
  268. ## rock solid for building a Nim compiler. It shouldn't be used for anything else.
  269. ## 2. use nim1.exe to produce nim2.exe. nim2.exe is the one you really need.
  270. ## 3. We use nim2.exe to build nim3.exe. nim3.exe is equal to nim2.exe except for timestamps.
  271. ## This step ensures a minimum amount of quality. We know that nim2.exe can be used
  272. ## for Nim compiler development.
  273. var output = "compiler" / "nim".exe
  274. var finalDest = "bin" / "nim".exe
  275. # default to use the 'c' command:
  276. let useCpp = doUseCpp()
  277. let smartNimcache = (if "release" in args or "danger" in args: "nimcache/r_" else: "nimcache/d_") &
  278. hostOS & "_" & hostCPU
  279. bundleChecksums(false)
  280. let nimStart = findStartNim().quoteShell()
  281. let times = 2 - ord(skipIntegrityCheck)
  282. for i in 0..times:
  283. let defaultCommand = if useCpp: "cpp" else: "c"
  284. let bootOptions = if args.len == 0 or args.startsWith("-"): defaultCommand else: ""
  285. echo "iteration: ", i+1
  286. var extraOption = ""
  287. var nimi = i.thVersion
  288. if i == 0:
  289. nimi = nimStart
  290. extraOption.add " --skipUserCfg --skipParentCfg -d:nimKochBootstrap"
  291. # The configs are skipped for bootstrap
  292. # (1st iteration) to prevent newer flags from breaking bootstrap phase.
  293. let ret = execCmdEx(nimStart & " --version")
  294. doAssert ret.exitCode == 0
  295. let version = ret.output.splitLines[0]
  296. if version.startsWith "Nim Compiler Version 0.20.0":
  297. extraOption.add " --lib:lib" # see https://github.com/nim-lang/Nim/pull/14291
  298. # in order to use less memory, we split the build into two steps:
  299. # --compileOnly produces a $project.json file and does not run GCC/Clang.
  300. # jsonbuild then uses the $project.json file to build the Nim binary.
  301. exec "$# $# $# --nimcache:$# $# --noNimblePath --compileOnly compiler" / "nim.nim" %
  302. [nimi, bootOptions, extraOption, smartNimcache, args]
  303. exec "$# jsonscript --noNimblePath --nimcache:$# $# compiler" / "nim.nim" %
  304. [nimi, smartNimcache, args]
  305. if sameFileContent(output, i.thVersion):
  306. copyExe(output, finalDest)
  307. echo "executables are equal: SUCCESS!"
  308. return
  309. copyExe(output, (i+1).thVersion)
  310. copyExe(output, finalDest)
  311. when not defined(windows):
  312. if not skipIntegrityCheck:
  313. echo "[Warning] executables are still not equal"
  314. # -------------- clean --------------------------------------------------------
  315. const
  316. cleanExt = [
  317. ".ppu", ".o", ".obj", ".dcu", ".~pas", ".~inc", ".~dsk", ".~dpr",
  318. ".map", ".tds", ".err", ".bak", ".pyc", ".exe", ".rod", ".pdb", ".idb",
  319. ".idx", ".ilk"
  320. ]
  321. ignore = [
  322. ".bzrignore", "nim", "nim.exe", "koch", "koch.exe", ".gitignore"
  323. ]
  324. proc cleanAux(dir: string) =
  325. for kind, path in walkDir(dir):
  326. case kind
  327. of pcFile:
  328. var (_, name, ext) = splitFile(path)
  329. if ext == "" or cleanExt.contains(ext):
  330. if not ignore.contains(name):
  331. echo "removing: ", path
  332. removeFile(path)
  333. of pcDir:
  334. case splitPath(path).tail
  335. of "nimcache":
  336. echo "removing dir: ", path
  337. removeDir(path)
  338. of "dist", ".git", "icons": discard
  339. else: cleanAux(path)
  340. else: discard
  341. proc removePattern(pattern: string) =
  342. for f in walkFiles(pattern):
  343. echo "removing: ", f
  344. removeFile(f)
  345. proc clean(args: string) =
  346. removePattern("web/*.html")
  347. removePattern("doc/*.html")
  348. cleanAux(getCurrentDir())
  349. for kind, path in walkDir(getCurrentDir() / "build"):
  350. if kind == pcDir:
  351. echo "removing dir: ", path
  352. removeDir(path)
  353. # -------------- builds a release ---------------------------------------------
  354. proc winReleaseArch(arch: string) =
  355. doAssert arch in ["32", "64"]
  356. let cpu = if arch == "32": "i386" else: "amd64"
  357. template withMingw(path, body) =
  358. let prevPath = getEnv("PATH")
  359. putEnv("PATH", (if path.len > 0: path & PathSep else: "") & prevPath)
  360. try:
  361. body
  362. finally:
  363. putEnv("PATH", prevPath)
  364. withMingw r"..\mingw" & arch & r"\bin":
  365. # Rebuilding koch is necessary because it uses its pointer size to
  366. # determine which mingw link to put in the NSIS installer.
  367. inFold "winrelease koch":
  368. nimexec "c --cpu:$# koch" % cpu
  369. kochExecFold("winrelease boot", "boot -d:release --cpu:$#" % cpu)
  370. kochExecFold("winrelease zip", "zip -d:release")
  371. overwriteFile r"build\nim-$#.zip" % VersionAsString,
  372. r"web\upload\download\nim-$#_x$#.zip" % [VersionAsString, arch]
  373. proc winRelease*() =
  374. # Now used from "tools/winrelease" and not directly supported by koch
  375. # anymore!
  376. # Build -docs file:
  377. when true:
  378. inFold "winrelease buildDocs":
  379. buildDocs(gaCode)
  380. withDir "web/upload/" & VersionAsString:
  381. inFold "winrelease zipdocs":
  382. exec "7z a -tzip docs-$#.zip *.html" % VersionAsString
  383. overwriteFile "web/upload/$1/docs-$1.zip" % VersionAsString,
  384. "web/upload/download/docs-$1.zip" % VersionAsString
  385. when true:
  386. inFold "winrelease csource":
  387. csource("-d:danger")
  388. when sizeof(pointer) == 4:
  389. winReleaseArch "32"
  390. when sizeof(pointer) == 8:
  391. winReleaseArch "64"
  392. # -------------- tests --------------------------------------------------------
  393. template `|`(a, b): string = (if a.len > 0: a else: b)
  394. proc tests(args: string) =
  395. nimexec "cc --opt:speed testament/testament"
  396. var testCmd = quoteShell(getCurrentDir() / "testament/testament".exe)
  397. testCmd.add " " & quoteShell("--nim:" & findNim())
  398. testCmd.add " " & (args|"all")
  399. let success = tryExec testCmd
  400. if not success:
  401. quit("tests failed", QuitFailure)
  402. proc temp(args: string) =
  403. proc splitArgs(a: string): (string, string) =
  404. # every --options before the command (indicated by starting
  405. # with not a dash) is part of the bootArgs, the rest is part
  406. # of the programArgs:
  407. let args = os.parseCmdLine a
  408. result = ("", "")
  409. var i = 0
  410. while i < args.len and args[i][0] == '-':
  411. result[0].add " " & quoteShell(args[i])
  412. inc i
  413. while i < args.len:
  414. result[1].add " " & quoteShell(args[i])
  415. inc i
  416. bundleChecksums(false)
  417. let d = getAppDir()
  418. let output = d / "compiler" / "nim".exe
  419. let finalDest = d / "bin" / "nim_temp".exe
  420. # 125 is the magic number to tell git bisect to skip the current commit.
  421. var (bootArgs, programArgs) = splitArgs(args)
  422. if "doc" notin programArgs and
  423. "threads" notin programArgs and
  424. "js" notin programArgs and "rst2html" notin programArgs:
  425. bootArgs = " -d:leanCompiler" & bootArgs
  426. let nimexec = findNim().quoteShell()
  427. exec(nimexec & " c -d:debug --debugger:native -d:nimBetterRun " & bootArgs & " " & (d / "compiler" / "nim"), 125)
  428. copyExe(output, finalDest)
  429. setCurrentDir(origDir)
  430. if programArgs.len > 0: exec(finalDest & " " & programArgs)
  431. proc xtemp(cmd: string) =
  432. let d = getAppDir()
  433. copyExe(d / "bin" / "nim".exe, d / "bin" / "nim_backup".exe)
  434. try:
  435. withDir(d):
  436. temp""
  437. copyExe(d / "bin" / "nim_temp".exe, d / "bin" / "nim".exe)
  438. exec(cmd)
  439. finally:
  440. copyExe(d / "bin" / "nim_backup".exe, d / "bin" / "nim".exe)
  441. proc icTest(args: string) =
  442. temp("")
  443. let inp = os.parseCmdLine(args)[0]
  444. let content = readFile(inp)
  445. let nimExe = getAppDir() / "bin" / "nim_temp".exe
  446. var i = 0
  447. for fragment in content.split("#!EDIT!#"):
  448. let file = inp.replace(".nim", "_temp.nim")
  449. writeFile(file, fragment)
  450. var cmd = nimExe & " cpp --ic:on -d:nimIcIntegrityChecks --listcmd "
  451. if i == 0:
  452. cmd.add "-f "
  453. cmd.add quoteShell(file)
  454. exec(cmd)
  455. inc i
  456. proc buildDrNim(args: string) =
  457. if not dirExists("dist/nimz3"):
  458. exec("git clone https://github.com/zevv/nimz3.git dist/nimz3")
  459. when defined(windows):
  460. if not dirExists("dist/dlls"):
  461. exec("git clone -q https://github.com/nim-lang/dlls.git dist/dlls")
  462. copyExe("dist/dlls/libz3.dll", "bin/libz3.dll")
  463. execFold("build drnim", "nim c -o:$1 $2 drnim/drnim" % ["bin/drnim".exe, args])
  464. else:
  465. if not dirExists("dist/z3"):
  466. exec("git clone -q https://github.com/Z3Prover/z3.git dist/z3")
  467. withDir("dist/z3"):
  468. exec("git fetch")
  469. exec("git checkout " & Z3StableCommit)
  470. createDir("build")
  471. withDir("build"):
  472. exec("""cmake -DZ3_BUILD_LIBZ3_SHARED=FALSE -G "Unix Makefiles" ../""")
  473. exec("make -j4")
  474. execFold("build drnim", "nim cpp --dynlibOverride=libz3 -o:$1 $2 drnim/drnim" % ["bin/drnim".exe, args])
  475. # always run the tests for now:
  476. exec("testament/testament".exe & " --nim:" & "drnim".exe & " pat drnim/tests")
  477. proc hostInfo(): string =
  478. "hostOS: $1, hostCPU: $2, int: $3, float: $4, cpuEndian: $5, cwd: $6" %
  479. [hostOS, hostCPU, $int.sizeof, $float.sizeof, $cpuEndian, getCurrentDir()]
  480. proc installDeps(dep: string, commit = "") =
  481. # the hashes/urls are version controlled here, so can be changed seamlessly
  482. # and tied to a nim release (mimicking git submodules)
  483. var commit = commit
  484. case dep
  485. of "tinyc":
  486. if commit.len == 0: commit = "916cc2f94818a8a382dd8d4b8420978816c1dfb3"
  487. cloneDependency(distDir, "https://github.com/timotheecour/nim-tinyc-archive", commit)
  488. else: doAssert false, "unsupported: " & dep
  489. # xxx: also add linenoise, niminst etc, refs https://github.com/nim-lang/RFCs/issues/206
  490. proc runCI(cmd: string) =
  491. doAssert cmd.len == 0, cmd # avoid silently ignoring
  492. echo "runCI: ", cmd
  493. echo hostInfo()
  494. # boot without -d:nimHasLibFFI to make sure this still works
  495. # `--lib:lib` is needed for bootstrap on openbsd, for reasons described in
  496. # https://github.com/nim-lang/Nim/pull/14291 (`getAppFilename` bugsfor older nim on openbsd).
  497. kochExecFold("Boot Nim ORC", "boot -d:release -d:nimStrictMode --lib:lib")
  498. when false: # debugging: when you need to run only 1 test in CI, use something like this:
  499. execFold("debugging test", "nim r tests/stdlib/tosproc.nim")
  500. doAssert false, "debugging only"
  501. ## build nimble early on to enable remainder to depend on it if needed
  502. kochExecFold("Build Nimble", "nimble")
  503. execFold("Install smtp", "nimble install smtp -y")
  504. let batchParam = "--batch:$1" % "NIM_TESTAMENT_BATCH".getEnv("_")
  505. if getEnv("NIM_TEST_PACKAGES", "0") == "1":
  506. nimCompileFold("Compile testament", "testament/testament.nim", options = "-d:release")
  507. execFold("Test selected Nimble packages", "testament $# pcat nimble-packages" % batchParam)
  508. else:
  509. testTools()
  510. for a in "zip opengl sdl1 jester@#head".split:
  511. let buildDeps = "build"/"deps" # xxx factor pending https://github.com/timotheecour/Nim/issues/616
  512. # if this gives `Additional info: "build/deps" [OSError]`, make sure nimble is >= v0.12.0,
  513. # otherwise `absolutePath` is needed, refs https://github.com/nim-lang/nimble/issues/901
  514. execFold("", "nimble install -y --nimbleDir:$# $#" % [buildDeps.quoteShell, a])
  515. ## run tests
  516. execFold("Test nimscript", "nim e tests/test_nimscript.nims")
  517. when defined(windows):
  518. execFold("Compile tester", "nim c --usenimcache -d:nimCoroutines --os:genode -d:posix --compileOnly testament/testament")
  519. # main bottleneck here
  520. # xxx: even though this is the main bottleneck, we could speedup the rest via batching with `--batch`.
  521. # BUG: with initOptParser, `--batch:'' all` interprets `all` as the argument of --batch, pending bug #14343
  522. execFold("Run tester", "nim c -r --putenv:NIM_TESTAMENT_REMOTE_NETWORKING:1 -d:nimStrictMode testament/testament $# all -d:nimCoroutines" % batchParam)
  523. block: # nimHasLibFFI:
  524. when defined(posix): # windows can be handled in future PR's
  525. execFold("nimble install -y libffi", "nimble install -y libffi")
  526. const nimFFI = "bin/nim.ctffi"
  527. # no need to bootstrap with koch boot (would be slower)
  528. let backend = if doUseCpp(): "cpp" else: "c"
  529. execFold("build with -d:nimHasLibFFI", "nim $1 -d:release -d:nimHasLibFFI -o:$2 compiler/nim.nim" % [backend, nimFFI])
  530. execFold("test with -d:nimHasLibFFI", "$1 $2 -r testament/testament --nim:$1 r tests/misc/trunner.nim -d:nimTrunnerFfi" % [nimFFI, backend])
  531. execFold("Run nimdoc tests", "nim r nimdoc/tester")
  532. execFold("Run rst2html tests", "nim r nimdoc/rsttester")
  533. execFold("Run nimpretty tests", "nim r nimpretty/tester.nim")
  534. when defined(posix):
  535. # refs #18385, build with -d:release instead of -d:danger for testing
  536. # We could also skip building nimsuggest in buildTools, or build it with -d:release
  537. # in bundleNimsuggest depending on some environment variable when we are in CI. One advantage
  538. # of rebuilding is this won't affect bin/nimsuggest when running runCI locally
  539. execFold("build nimsuggest_testing", "nim c -o:bin/nimsuggest_testing -d:release nimsuggest/nimsuggest")
  540. execFold("Run nimsuggest tests", "nim r nimsuggest/tester")
  541. kochExecFold("Testing booting in refc", "boot -d:release --mm:refc -d:nimStrictMode --lib:lib")
  542. proc testUnixInstall(cmdLineRest: string) =
  543. csource("-d:danger" & cmdLineRest)
  544. xz(false, cmdLineRest)
  545. let oldCurrentDir = getCurrentDir()
  546. try:
  547. let destDir = getTempDir()
  548. copyFile("build/nim-$1.tar.xz" % VersionAsString,
  549. destDir / "nim-$1.tar.xz" % VersionAsString)
  550. setCurrentDir(destDir)
  551. execCleanPath("tar -xJf nim-$1.tar.xz" % VersionAsString)
  552. setCurrentDir("nim-$1" % VersionAsString)
  553. execCleanPath("sh build.sh")
  554. # first test: try if './bin/nim --version' outputs something sane:
  555. let output = execProcess("./bin/nim --version").splitLines
  556. if output.len > 0 and output[0].contains(VersionAsString):
  557. echo "Version check: success"
  558. execCleanPath("./bin/nim c koch.nim")
  559. execCleanPath("./koch boot -d:release", destDir / "bin")
  560. # check the docs build:
  561. execCleanPath("./koch docs", destDir / "bin")
  562. # check nimble builds:
  563. execCleanPath("./koch tools")
  564. # check the tests work:
  565. putEnv("NIM_EXE_NOT_IN_PATH", "NOT_IN_PATH")
  566. execCleanPath("./koch tests --nim:bin/nim cat megatest", destDir / "bin")
  567. else:
  568. echo "Version check: failure"
  569. finally:
  570. setCurrentDir oldCurrentDir
  571. proc valgrind(cmd: string) =
  572. # somewhat hacky: '=' sign means "pass to valgrind" else "pass to Nim"
  573. let args = parseCmdLine(cmd)
  574. var nimcmd = ""
  575. var valcmd = ""
  576. for i, a in args:
  577. if i == args.len-1:
  578. # last element is the filename:
  579. valcmd.add ' '
  580. valcmd.add changeFileExt(a, ExeExt)
  581. nimcmd.add ' '
  582. nimcmd.add a
  583. elif '=' in a:
  584. valcmd.add ' '
  585. valcmd.add a
  586. else:
  587. nimcmd.add ' '
  588. nimcmd.add a
  589. exec("nim c" & nimcmd)
  590. let supp = getAppDir() / "tools" / "nimgrind.supp"
  591. exec("valgrind --suppressions=" & supp & valcmd)
  592. proc showHelp(success: bool) =
  593. quit(HelpText % [VersionAsString & spaces(44-len(VersionAsString)),
  594. CompileDate, CompileTime], if success: QuitSuccess else: QuitFailure)
  595. proc branchDone() =
  596. let thisBranch = execProcess("git symbolic-ref --short HEAD").strip()
  597. if thisBranch != "devel" and thisBranch != "":
  598. exec("git checkout devel")
  599. exec("git branch -D " & thisBranch)
  600. exec("git pull --rebase")
  601. when isMainModule:
  602. var op = initOptParser()
  603. var
  604. latest = false
  605. localDocsOnly = false
  606. localDocsOut = ""
  607. skipIntegrityCheck = false
  608. while true:
  609. op.next()
  610. case op.kind
  611. of cmdLongOption, cmdShortOption:
  612. case normalize(op.key)
  613. of "help", "h": showHelp(success = true)
  614. of "latest": latest = true
  615. of "stable": latest = false
  616. of "nim": nimExe = op.val.absolutePath # absolute so still works with changeDir
  617. of "localdocs":
  618. localDocsOnly = true
  619. if op.val.len > 0:
  620. localDocsOut = op.val.absolutePath
  621. of "skipintegritycheck":
  622. skipIntegrityCheck = true
  623. else: showHelp(success = false)
  624. of cmdArgument:
  625. case normalize(op.key)
  626. of "boot": boot(op.cmdLineRest, skipIntegrityCheck)
  627. of "clean": clean(op.cmdLineRest)
  628. of "doc", "docs": buildDocs(op.cmdLineRest & " --d:nimPreviewSlimSystem " & paCode, localDocsOnly, localDocsOut)
  629. of "doc0", "docs0":
  630. # undocumented command for Araq-the-merciful:
  631. buildDocs(op.cmdLineRest & gaCode)
  632. of "pdf": buildPdfDoc(op.cmdLineRest, "doc/pdf")
  633. of "csource", "csources": csource(op.cmdLineRest)
  634. of "zip": zip(latest, op.cmdLineRest)
  635. of "xz": xz(latest, op.cmdLineRest)
  636. of "nsis": nsis(latest, op.cmdLineRest)
  637. of "geninstall": geninstall(op.cmdLineRest)
  638. of "distrohelper": geninstall()
  639. of "install": install(op.cmdLineRest)
  640. of "testinstall": testUnixInstall(op.cmdLineRest)
  641. of "installdeps": installDeps(op.cmdLineRest)
  642. of "runci": runCI(op.cmdLineRest)
  643. of "test", "tests": tests(op.cmdLineRest)
  644. of "temp": temp(op.cmdLineRest)
  645. of "xtemp": xtemp(op.cmdLineRest)
  646. of "wintools": bundleWinTools(op.cmdLineRest)
  647. of "nimble": bundleNimbleExe(latest, op.cmdLineRest)
  648. of "atlas": bundleAtlasExe(latest, op.cmdLineRest)
  649. of "nimsuggest": bundleNimsuggest(op.cmdLineRest)
  650. # toolsNoNimble is kept for backward compatibility with build scripts
  651. of "toolsnonimble", "toolsnoexternal":
  652. buildTools(op.cmdLineRest)
  653. of "tools":
  654. buildTools(op.cmdLineRest)
  655. bundleNimbleExe(latest, op.cmdLineRest)
  656. bundleAtlasExe(latest, op.cmdLineRest)
  657. of "checksums":
  658. bundleChecksums(latest)
  659. of "pushcsource":
  660. quit "use this instead: https://github.com/nim-lang/csources_v1/blob/master/push_c_code.nim"
  661. of "valgrind": valgrind(op.cmdLineRest)
  662. of "c2nim": bundleC2nim(op.cmdLineRest)
  663. of "drnim": buildDrNim(op.cmdLineRest)
  664. of "fusion":
  665. let suffix = if latest: HeadHash else: FusionStableHash
  666. exec("nimble install -y fusion@$#" % suffix)
  667. of "ic": icTest(op.cmdLineRest)
  668. of "branchdone": branchDone()
  669. else: showHelp(success = false)
  670. break
  671. of cmdEnd:
  672. showHelp(success = false)