Skip to content

Commit

Permalink
Test and Publish for Scala 3.3.5 (#1604)
Browse files Browse the repository at this point in the history
  • Loading branch information
lihaoyi authored Jan 30, 2025
1 parent 5b8ba21 commit cef8c83
Show file tree
Hide file tree
Showing 2 changed files with 5 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.16,3.3.4,3.4.3,3.5.1,3.6.3}].__.test'
command: 'sshd[{2.12.20,2.13.16,3.3.5,3.4.3,3.5.1,3.6.3}].__.test'

- java-version: 11
command: 'amm.repl[2.12.{9,14,20}].__.test'
- java-version: 17
command: 'amm.repl[2.13.{4,9,16}].__.test'
- java-version: 21
command: 'amm.repl[{3.3.4,3.4.3,3.5.1,3.6.3}].__.test'
command: 'amm.repl[{3.3.5,3.4.3,3.5.1,3.6.3}].__.test'

- java-version: 11
command: 'amm[2.12.{9,14,20}].__.test'
- java-version: 17
command: 'amm[2.13.{4,9,16}].__.test'
- java-version: 21
command: 'amm[{3.3.4,3.4.3,3.5.1,3.6.3}].__.test'
command: 'amm[{3.3.5,3.4.3,3.5.1,3.6.3}].__.test'

runs-on: ubuntu-latest
steps:
Expand All @@ -59,7 +59,7 @@ jobs:
- java-version: 17
scala-version: '2.13.{4,9,15}'
- java-version: 21
scala-version: '{3.3.4,3.4.3,3.5.1}'
scala-version: '{3.3.5,3.4.3,3.5.1}'

runs-on: ubuntu-latest
steps:
Expand Down
2 changes: 1 addition & 1 deletion build.mill
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ val scala2_13Versions = 2.to(16)
// .dropWhile(v => isJava21 && v < 11)
.map(v => s"2.13.${v}")
// TODO: We can't have 3.4.0 & 3.4.1 until we solve https://github.com/com-lihaoyi/Ammonite/issues/1395
val scala33Versions = Seq("3.3.4")
val scala33Versions = Seq("3.3.4", "3.3.5")
val scala34Versions = Seq("3.4.2", "3.4.3")
val scala35Versions = Seq("3.5.0", "3.5.1")
val scala36Versions = Seq("3.6.2", "3.6.3")
Expand Down

0 comments on commit cef8c83

Please sign in to comment.