The GitHub Actions job "Nightly Builds" on pekko-http.git/main has failed. Run started by GitHub user pjfanning (triggered by pjfanning).
Head commit for run: a20f58c7b6064ff7e55be0de8f861b0bd60ed5fe / He-Pin(kerr) <[email protected]> fix: nightly YAML multiline run command starts sbt without tasks (#1031) Motivation: After #1030, the nightly job has been hanging for 5+ hours per matrix entry until canceled (e.g. run 25588927669). The `run: |` literal block turns each indented line into a separate shell command, so the first line `sbt -D... -D...` launches sbt with no tasks and drops into the interactive REPL, while the following `-D...` / `"++ ..." ... test` lines never reach sbt. Modification: Switch the block scalar from `|` (literal, preserves newlines) to `>` (folded, joins lines with spaces) so the whole sbt invocation runs as a single command. Trailing whitespace on the first line is also removed. Result: The nightly job runs sbt with all `-D` flags and the `test` task in one process, restoring normal completion time. Report URL: https://github.com/apache/pekko-http/actions/runs/25596252879 With regards, GitHub Actions via GitBox --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
