From 3ad29ef835a6fa224d98fdaa8587afa81bafddea Mon Sep 17 00:00:00 2001 From: fauna-chase <73842483+fauna-chase@users.noreply.github.com> Date: Mon, 30 Oct 2023 10:22:02 -0400 Subject: [PATCH] improve pipeline sbt output (#368) Without this set the shell shows progress in a way that doesn't work well in a pipeline. Output from the test commands will be a lot more clear with this set. --- concourse/tasks/integration.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/concourse/tasks/integration.yml b/concourse/tasks/integration.yml index e2e293c6..f41fbfaa 100644 --- a/concourse/tasks/integration.yml +++ b/concourse/tasks/integration.yml @@ -23,7 +23,7 @@ services: volumes: - "../../:/tmp/app" working_dir: "/tmp/app" - command: [sh, -c, "ls -la && sbt ++2.11.12 test"] + command: [sh, -c, "ls -la && sbt ++2.11.12 -Dsbt.supershell=false test"] tests-jdk-11-scala-2.12: environment: @@ -38,7 +38,7 @@ services: volumes: - "../../:/tmp/app" working_dir: "/tmp/app" - command: [sh, -c, "ls -la && sbt ++2.12.14 test"] + command: [sh, -c, "ls -la && sbt ++2.12.14 -Dsbt.supershell=false test"] tests-oracle-jdk-11-scala-2.11: environment: @@ -56,7 +56,7 @@ services: volumes: - "../../:/tmp/app" working_dir: "/tmp/app" - command: [sh, -c, "ls -la && sbt ++2.11.12 test"] + command: [sh, -c, "ls -la && sbt ++2.11.12 -Dsbt.supershell=false test"] tests-oracle-jdk-11-scala-2.12: environment: @@ -74,4 +74,4 @@ services: volumes: - "../../:/tmp/app" working_dir: "/tmp/app" - command: [sh, -c, "ls -la && sbt ++2.12.14 test"] \ No newline at end of file + command: [sh, -c, "ls -la && sbt ++2.12.14 -Dsbt.supershell=false test"]