File tree 3 files changed +14
-2
lines changed 3 files changed +14
-2
lines changed Original file line number Diff line number Diff line change @@ -127,7 +127,8 @@ object DottyBuild extends Build {
127
127
(" -DpartestParentID=" + pid) :: tuning ::: agentOptions ::: travis_build ::: fullpath
128
128
}
129
129
) ++ addCommandAlias(" partest" , " ;test:package;package;test:runMain dotc.build;lockPartestFile;test:test;runPartestRunner" ) ++
130
- addCommandAlias(" partest-only" , " ;test:package;package;test:runMain dotc.build;lockPartestFile;test:test-only dotc.tests;runPartestRunner" )
130
+ addCommandAlias(" partest-only" , " ;test:package;package;test:runMain dotc.build;lockPartestFile;test:test-only dotc.tests;runPartestRunner" ) ++
131
+ addCommandAlias(" partest-only-no-boostrap" , " ;test:package;package; lockPartestFile;test:test-only dotc.tests;runPartestRunner" )
131
132
132
133
lazy val dotty = Project (id = " dotty" , base = file(" ." ), settings = defaults)
133
134
Original file line number Diff line number Diff line change @@ -7,5 +7,5 @@ scriptsDir="$baseDir/scripts"
7
7
git log --pretty=format:" %h - %an, %aD : %s" -n 10
8
8
9
9
update DarkDimius scala scala-scala dotty-library
10
- sbt $sbtArgs update compile " partest-only --show-diff --verbose"
10
+ sbt $sbtArgs update compile " partest-only-no-boostrap --show-diff --verbose"
11
11
Original file line number Diff line number Diff line change
1
+ #! /bin/bash -e
2
+
3
+ baseDir=${WORKSPACE-`pwd`}
4
+ scriptsDir=" $baseDir /scripts"
5
+ . $scriptsDir /common
6
+
7
+ git log --pretty=format:" %h - %an, %aD : %s" -n 10
8
+
9
+ update DarkDimius scala scala-scala dotty-library
10
+ sbt $sbtArgs update compile " partest-only --show-diff --verbose"
11
+
You can’t perform that action at this time.
0 commit comments