Skip to content

Commit

Permalink
debug CI
Browse files Browse the repository at this point in the history
  • Loading branch information
alexarchambault committed Oct 7, 2024
1 parent df7f48d commit 8906532
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion testkit/src/mill/testkit/IntegrationTester.scala
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,8 @@ object IntegrationTester {
override def close(): Unit = {
if (clientServerMode) {
// try to stop the server
os.call(
System.err.println("Shutting down Mill server")
val res = os.call(
cmd = (millExecutable, "shutdown"),
cwd = workspacePath,
stdin = os.Inherit,
Expand All @@ -154,6 +155,7 @@ object IntegrationTester {
env = millTestSuiteEnv,
check = false
)
System.err.println(s"Shut down Mill server (exit code ${res.exitCode})")
}

removeServerIdFile()
Expand Down

0 comments on commit 8906532

Please sign in to comment.