Skip to content

Commit

Permalink
Merge pull request #138 from danicheg/2.12.20
Browse files Browse the repository at this point in the history
Add Scala 2.12.20 support
  • Loading branch information
danicheg authored Sep 7, 2024
2 parents bfc89a4 + 63572fa commit 7e3dc59
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ jobs:
- 2.12.17
- 2.12.18
- 2.12.19
- 2.12.20
- 2.13.5
- 2.13.6
- 2.13.7
Expand All @@ -73,7 +74,7 @@ jobs:
run: sbt -v '++ ${{ matrix.scala }}' plugin/test
- name: SBT plugin tests
run: sbt -v '++ ${{ matrix.scala }}' profilingSbtPlugin/scripted
intergration-tests:
integration-tests:
name: Integration tests
runs-on: ubuntu-latest
steps:
Expand Down
3 changes: 2 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ lazy val root = project
(integrations / watchSources).value
)

val bin212 = Seq("2.12.19", "2.12.18", "2.12.17", "2.12.16", "2.12.15", "2.12.14", "2.12.13")
val bin212 =
Seq("2.12.20", "2.12.19", "2.12.18", "2.12.17", "2.12.16", "2.12.15", "2.12.14", "2.12.13")
val bin213 =
Seq(
"2.13.14",
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
package ch.epfl.scala.profilers.tools

import scala.tools.nsc.Global

object SettingsOps {
def areStatisticsEnabled(g: Global): Boolean =
g.settings.areStatisticsEnabled
}

0 comments on commit 7e3dc59

Please sign in to comment.