We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec5da87 commit e2dd138Copy full SHA for e2dd138
project/scripts/cmdTests
@@ -95,7 +95,8 @@ mkdir -p _site && ./bin/dotd -project Hello -siteroot _site tests/run/hello.scal
95
96
echo "running Vulpix meta test"
97
tmp=$(mktemp)
98
-if sbt -no-colors "dotty-compiler/testOnly dotty.tools.vulpix.VulpixMetaTests" > "$tmp" 2>&1; then
+if ./project/scripts/sbt "dotty-compiler/testOnly dotty.tools.vulpix.VulpixMetaTests" > "$tmp" 2>&1; then
99
+ cat "$tmp"
100
echo "failed: sbt exited without error on VulpixMetaTests, these tests are expected to fail"
101
exit -1
102
fi
project/scripts/sbt
@@ -12,4 +12,5 @@ sbt -J-Xmx4096m \
12
-J-XX:MaxMetaspaceSize=1024m \
13
-Ddotty.drone.mem=4096m \
14
-Dsbt.ivy.home=/var/cache/drone/ivy2 \
15
+ -no-colors \
16
"$CMD"
0 commit comments