File tree Expand file tree Collapse file tree 2 files changed +23
-1
lines changed Expand file tree Collapse file tree 2 files changed +23
-1
lines changed Original file line number Diff line number Diff line change
1
+ language : scala
2
+
3
+ # These directories are cached to S3 at the end of the build
4
+ cache :
5
+ directories :
6
+ - $HOME/.ivy2/cache
7
+ - $HOME/.sbt/boot/
8
+
9
+ jdk :
10
+ - oraclejdk8
11
+
12
+ script :
13
+ # # This runs the template with the default parameters, and runs test within the templated app.
14
+ - sbt -Dfile.encoding=UTF8 -J-XX:ReservedCodeCacheSize=256M test
15
+
16
+ - pushd target/sbt-test/dotty-staged-template/scripted
17
+ - sbt +run +test
18
+ - popd
19
+
20
+ # Tricks to avoid unnecessary cache updates
21
+ - find $HOME/.sbt -name "*.lock" | xargs rm
22
+ - find $HOME/.ivy2 -name "ivydata-*.properties" | xargs rm
Original file line number Diff line number Diff line change 4
4
lazy val root = project
5
5
.in(file(" ." ))
6
6
.settings(
7
- name := " dotty-template" ,
7
+ name := " dotty-staged- template" ,
8
8
test in Test := {
9
9
val _ = (g8Test in Test ).toTask(" " ).value
10
10
},
You can’t perform that action at this time.
0 commit comments