File tree 4 files changed +4
-13
lines changed
4 files changed +4
-13
lines changed Original file line number Diff line number Diff line change @@ -13,8 +13,7 @@ object CommunityBuildRunner:
13
13
* is necessary since we run tests each time on a fresh
14
14
* Docker container. We run the update on Docker container
15
15
* creation time to create the cache of the dependencies
16
- * and avoid network overhead. See https://github.com/lampepfl/dotty-drone
17
- * for more infrastructural details.
16
+ * and avoid network overhead.
18
17
*/
19
18
extension (self : CommunityProject )
20
19
def run ()(using suite : CommunityBuildRunner ): Unit =
Original file line number Diff line number Diff line change @@ -19,7 +19,6 @@ object Properties {
19
19
20
20
/** Are we running on the CI? */
21
21
val isRunByCI : Boolean = sys.env.isDefinedAt(" DOTTY_CI_RUN" )
22
- || sys.env.isDefinedAt(" DRONE" ) // TODO remove this when we drop Drone
23
22
24
23
val testCache : Path =
25
24
sys.env.get(" DOTTY_TEST_CACHE" ).map(Paths .get(_)).getOrElse {
Original file line number Diff line number Diff line change @@ -105,7 +105,7 @@ object VulpixUnitTests extends ParallelTesting {
105
105
def maxDuration = 3 .seconds
106
106
def numberOfSlaves = 5
107
107
def safeMode = sys.env.get(" SAFEMODE" ).isDefined
108
- def isInteractive = ! sys.env.contains(" DRONE " )
108
+ def isInteractive = ! sys.env.contains(" DOTTY_CI_RUN " )
109
109
def testFilter = Nil
110
110
def updateCheckFiles : Boolean = false
111
111
def failedTests = None
Original file line number Diff line number Diff line change @@ -403,15 +403,8 @@ object Build {
403
403
PgpKeys .pgpPassphrase := sys.env.get(" PGP_PW" ).map(_.toCharArray()),
404
404
PgpKeys .useGpgPinentry := true ,
405
405
406
- javaOptions ++= {
407
- val ciOptions = // propagate if this is a CI build
408
- sys.props.get(" dotty.drone.mem" ) match {
409
- case Some (prop) => List (" -Xmx" + prop)
410
- case _ => List ()
411
- }
412
- // Do not cut off the bottom of large stack traces (default is 1024)
413
- " -XX:MaxJavaStackTraceDepth=1000000" :: agentOptions ::: ciOptions
414
- },
406
+ // Do not cut off the bottom of large stack traces (default is 1024)
407
+ javaOptions ++= " -XX:MaxJavaStackTraceDepth=1000000" :: agentOptions,
415
408
416
409
excludeLintKeys ++= Set (
417
410
// We set these settings in `commonSettings`, if a project
You can’t perform that action at this time.
0 commit comments