Skip to content

Commit

Permalink
Add support for Scala 3.4.3 (#1553)
Browse files Browse the repository at this point in the history
Supersedes #1534 &
#1532
Closes #1533
  • Loading branch information
Gedochao committed Sep 13, 2024
1 parent e1ff675 commit 08c3afb
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,21 +22,21 @@ jobs:
command: 'terminal.__.test'

- java-version: 11
command: 'sshd[{2.12.20,2.13.14,3.4.2,3.5.0}].__.test'
command: 'sshd[{2.12.20,2.13.14,3.4.3,3.5.0}].__.test'

- java-version: 11
command: 'amm.repl[2.12.{9,14,20}].__.test'
- java-version: 17
command: 'amm.repl[2.13.{4,9,14}].__.test'
- java-version: 21
command: 'amm.repl[{3.4.2,3.5.0}].__.test'
command: 'amm.repl[{3.4.3,3.5.0}].__.test'

- java-version: 11
command: 'amm[2.12.{9,14,20}].__.test'
- java-version: 17
command: 'amm[2.13.{4,9,14}].__.test'
- java-version: 21
command: 'amm[{3.4.2,3.5.0}].__.test'
command: 'amm[{3.4.3,3.5.0}].__.test'

runs-on: ubuntu-latest
steps:
Expand All @@ -57,7 +57,7 @@ jobs:
- java-version: 17
scala-version: '2.13.{4,9,14}'
- java-version: 21
scala-version: '{3.4.2,3.5.0}'
scala-version: '{3.4.3,3.5.0}'

runs-on: ubuntu-latest
steps:
Expand Down
3 changes: 2 additions & 1 deletion build.sc
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,8 @@ val scala2_12Versions = 9.to(20)
val scala2_13Versions = 2.to(14)
// .dropWhile(v => isJava21 && v < 11)
.map(v => s"2.13.${v}")
val scala34Versions = Seq("3.4.2")
// TODO: We can't have 3.4.0 & 3.4.1 until we solve https://github.com/com-lihaoyi/Ammonite/issues/1395
val scala34Versions = Seq("3.4.2", "3.4.3")
val scala35Versions = Seq("3.5.0")

val scala2Versions = scala2_12Versions ++ scala2_13Versions
Expand Down

0 comments on commit 08c3afb

Please sign in to comment.