Skip to content

Commit

Permalink
improve pipeline sbt output (#368)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
fauna-chase authored Oct 30, 2023
1 parent 375b2af commit 3ad29ef
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions concourse/tasks/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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:
Expand All @@ -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:
Expand All @@ -74,4 +74,4 @@ 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"]

0 comments on commit 3ad29ef

Please sign in to comment.