Skip to content

Commit

Permalink
CommunitySuite: remove some versions
Browse files Browse the repository at this point in the history
Let's try to have one or two versions of each repo, ideally differing
major releases or currently in active use.
  • Loading branch information
kitbellew committed Oct 7, 2024
1 parent daee3e1 commit e41e7b2
Show file tree
Hide file tree
Showing 7 changed files with 1 addition and 73 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,6 @@ import scala.meta._
class CommunityMunitSuite
extends CommunityRepoSuite("https://github.com/scalameta/munit.git", "munit") {

override protected def builds = Seq(
getBuild("v1.0.1", dialects.Scala213, 109),
// latest commit from 30.03.2021
getBuild("06346adfe3519c384201eec531762dad2f4843dc", dialects.Scala213, 102),
)
override protected def builds = Seq(getBuild("v1.0.1", dialects.Scala213, 109))

}
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,6 @@ abstract class CommunityPlayFrameworkSuite(name: String)
name,
)

class CommunityPlayFramework_2_9_Suite
extends CommunityPlayFrameworkSuite("playframework-2.9") {

override protected def builds = Seq(getBuild("2.9.5", dialects.Scala213, 454))

}

class CommunityPlayFramework_3_0_Suite
extends CommunityPlayFrameworkSuite("playframework-3.0") {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,27 +10,6 @@ abstract class CommunityScalaCliSuite(name: String)
name,
)

class CommunityScalaCli1_2Suite
extends CommunityScalaCliSuite("scala-cli-1.2") {

override protected def builds = Seq(getBuild("v1.2.2", dialects.Scala30, 581))

}

class CommunityScalaCli1_3Suite
extends CommunityScalaCliSuite("scala-cli-1.3") {

override protected def builds = Seq(getBuild("v1.3.2", dialects.Scala30, 582))

}

class CommunityScalaCli1_4Suite
extends CommunityScalaCliSuite("scala-cli-1.4") {

override protected def builds = Seq(getBuild("v1.4.3", dialects.Scala30, 586))

}

class CommunityScalaCli1_5Suite
extends CommunityScalaCliSuite("scala-cli-1.5") {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,6 @@ import scala.meta._
abstract class CommunityScalazSuite(name: String)
extends CommunityRepoSuite("https://github.com/scalaz/scalaz.git", name)

class CommunityScalaz_7_2_Suite extends CommunityScalazSuite("scalaz-7.2") {

override protected def builds =
Seq(getBuild("v7.2.36", dialects.Scala213, 417))

}

class CommunityScalaz_7_3_Suite extends CommunityScalazSuite("scalaz-7.3") {

override protected def builds = Seq(getBuild("v7.3.8", dialects.Scala213, 420))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,6 @@ import scala.meta._
abstract class CommunityScala2Suite(name: String)
extends CommunityRepoSuite("https://github.com/scala/scala.git", name)

class CommunityScala2_11Suite extends CommunityScala2Suite("scala-2.11") {

override protected def builds =
Seq(getBuild("v2.11.12", dialects.Scala211, 1286))

}

class CommunityScala2_12Suite extends CommunityScala2Suite("scala-2.12") {

override protected def builds =
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,18 +7,6 @@ import scala.meta._
abstract class CommunityScala3Suite(name: String)
extends CommunityRepoSuite("https://github.com/scala/scala3.git", name)

class CommunityScala3_0Suite extends CommunityScala3Suite("scala-3.0") {

override protected def builds = Seq(getBuild("3.0.2", dialects.Scala30, 698))

}

class CommunityScala3_1Suite extends CommunityScala3Suite("scala-3.1") {

override protected def builds = Seq(getBuild("3.1.3", dialects.Scala31, 747))

}

class CommunityScala3_2Suite extends CommunityScala3Suite("scala-3.2") {

override protected def builds = Seq(getBuild("3.2.2", dialects.Scala32, 791))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,20 +7,6 @@ import scala.meta._
abstract class CommunitySparkSuite(name: String)
extends CommunityRepoSuite("https://github.com/apache/spark.git", name)

class CommunitySpark1_6Suite extends CommunitySparkSuite("spark-1.6") {

override protected def builds =
Seq(getBuild("v1.6.3", dialects.Scala213, 1444))

}

class CommunitySpark2_4Suite extends CommunitySparkSuite("spark-2.4") {

override protected def builds =
Seq(getBuild("v2.4.8", dialects.Scala213, 1931))

}

class CommunitySpark3_4Suite extends CommunitySparkSuite("spark-3.4") {

override protected def builds =
Expand Down

0 comments on commit e41e7b2

Please sign in to comment.