[minor] don't find "Hint: gc" for action (#20170)

This commit is contained in:
ringabout
2022-08-07 23:50:26 +08:00
committed by GitHub
parent 3bd935f331
commit fd6640fcda

View File

@@ -9,9 +9,7 @@ proc main() =
doAssert exitCode == 0, output
var start = rfind(output, "Hint: gc")
if start < 0:
start = rfind(output, "Hint: mm")
let start = rfind(output, "Hint: mm")
doAssert parseUntil(output, msg, "; proj", start) > 0, output
let (commitHash, _) = execCmdEx("""git log --format="%H" -n 1""")
@@ -25,4 +23,4 @@ The lines below are statistics of the Nim compiler built from {commitHash}
writeFile "ci/nimcache/results.txt", welcomeMessage
when isMainModule:
main()
main()