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 e3388ca commit b7d1034Copy full SHA for b7d1034
.drone.yml
@@ -11,7 +11,6 @@ pipeline:
11
image: lampepfl/dotty:24-04-2017
12
pull: true
13
commands:
14
- - ln -s /var/cache/drone/ivy2 "$HOME/.ivy2"
15
- ./project/scripts/sbt "${CI_TEST}"
16
when:
17
branch:
project/scripts/sbt
@@ -13,6 +13,10 @@ else
fi
if [ $SHOULD_RUN = true ]; then
+ # get the ivy2 cache:
+ ln -s /var/cache/drone/ivy2 "$HOME/.ivy2" || true
18
+
19
+ # run sbt with the supplied arg:
20
sbt -J-Xmx4096m \
21
-J-XX:ReservedCodeCacheSize=512m \
22
-J-XX:MaxMetaspaceSize=1024m \
0 commit comments