Skip to content

Commit

Permalink
rerun without skipping tests
Browse files Browse the repository at this point in the history
  • Loading branch information
timotheecour committed Apr 12, 2020
1 parent d2f09c1 commit 0ae1ae1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/continuous_integration.nim
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ proc gitLogPretty(): string =
let cmd = "git log --no-merges -1 --pretty=oneline"
let (outp, errC) = execCmdEx(cmd)
doAssert errC == 0, $outp
echo ("gitLogPretty", cmd, outp)
outp

proc isNimDocOnly*(): bool =
Expand Down Expand Up @@ -70,7 +69,8 @@ proc hostInfo*(): string =
let urlCommit = fmt"{urlBase}/commit/{commit}"

let branch = getAzureEnv("Build.SourceBranchName")
let msg = getAzureEnv("Build.SourceVersionMessage").quoteShell
# let msg = getAzureEnv("Build.SourceVersionMessage") # not useful for merge commits
let msg = gitLogPretty()
let buildNum = getAzureEnv("Build.BuildNumber")
let nl = "\n"
# Avoids `,` after urls since it'd prevent the link from being clickable in azure UI
Expand Down

0 comments on commit 0ae1ae1

Please sign in to comment.