This is an automated email from the ASF dual-hosted git repository.
hepin pushed a commit to branch main
in repository
https://gitbox.apache.org/repos/asf/incubator-pekko-persistence-jdbc.git
The following commit(s) were added to refs/heads/main by this push:
new fe94edb Update Scala 2 versions
fe94edb is described below
commit fe94edb53112621676e38fe2bac615fe67ffd578
Author: Matthew de Detrich <[email protected]>
AuthorDate: Tue Jun 6 19:31:49 2023 +0200
Update Scala 2 versions
---
.github/workflows/h2-test.yml | 8 ++++----
.github/workflows/mysql-tests.yml | 2 +-
.github/workflows/oracle-tests.yml | 2 +-
.github/workflows/postgres-tests.yml | 2 +-
.github/workflows/sqlserver-tests.yml | 2 +-
project/Dependencies.scala | 4 ++--
6 files changed, 10 insertions(+), 10 deletions(-)
diff --git a/.github/workflows/h2-test.yml b/.github/workflows/h2-test.yml
index 8614cc9..19f5bc9 100644
--- a/.github/workflows/h2-test.yml
+++ b/.github/workflows/h2-test.yml
@@ -18,10 +18,10 @@ jobs:
fail-fast: false
matrix:
include:
- - { java-version: 8, scala-version: 2.12.17, sbt-opts: '' }
- - { java-version: 8, scala-version: 2.13.10, sbt-opts: '' }
- - { java-version: 11, scala-version: 2.12.17, sbt-opts:
'-J-XX:+UnlockExperimentalVMOptions -J-XX:+UseJVMCICompiler' }
- - { java-version: 11, scala-version: 2.13.10, sbt-opts:
'-J-XX:+UnlockExperimentalVMOptions -J-XX:+UseJVMCICompiler' }
+ - { java-version: 8, scala-version: 2.12.18, sbt-opts: '' }
+ - { java-version: 8, scala-version: 2.13.11, sbt-opts: '' }
+ - { java-version: 11, scala-version: 2.12.18, sbt-opts:
'-J-XX:+UnlockExperimentalVMOptions -J-XX:+UseJVMCICompiler' }
+ - { java-version: 11, scala-version: 2.13.11, sbt-opts:
'-J-XX:+UnlockExperimentalVMOptions -J-XX:+UseJVMCICompiler' }
steps:
- name: Checkout
uses: actions/checkout@v3
diff --git a/.github/workflows/mysql-tests.yml
b/.github/workflows/mysql-tests.yml
index eef73cd..debbd1f 100644
--- a/.github/workflows/mysql-tests.yml
+++ b/.github/workflows/mysql-tests.yml
@@ -46,7 +46,7 @@ jobs:
run: ./scripts/launch-mysql.sh
- name: Run Integration tests for ${{ matrix.name }}
- run: sbt "++2.13.10 It/testOnly
org.apache.pekko.persistence.jdbc.integration.MySQL*" ${{ matrix.extraOpts }}
-J-XX:+UnlockExperimentalVMOptions -J-XX:+UseJVMCICompiler
+ run: sbt "++2.13.11 It/testOnly
org.apache.pekko.persistence.jdbc.integration.MySQL*" ${{ matrix.extraOpts }}
-J-XX:+UnlockExperimentalVMOptions -J-XX:+UseJVMCICompiler
- name: Print logs on failure
if: ${{ failure() }}
diff --git a/.github/workflows/oracle-tests.yml
b/.github/workflows/oracle-tests.yml
index e42c07f..c3f9703 100644
--- a/.github/workflows/oracle-tests.yml
+++ b/.github/workflows/oracle-tests.yml
@@ -46,7 +46,7 @@ jobs:
run: ./scripts/launch-oracle.sh
- name: Run Integration tests for ${{ matrix.name }}
- run: sbt "++2.13.10 It/testOnly
org.apache.pekko.persistence.jdbc.integration.Oracle*" ${{ matrix.extraOpts }}
-J-XX:+UnlockExperimentalVMOptions -J-XX:+UseJVMCICompiler
+ run: sbt "++2.13.11 It/testOnly
org.apache.pekko.persistence.jdbc.integration.Oracle*" ${{ matrix.extraOpts }}
-J-XX:+UnlockExperimentalVMOptions -J-XX:+UseJVMCICompiler
- name: Print logs on failure
if: ${{ failure() }}
diff --git a/.github/workflows/postgres-tests.yml
b/.github/workflows/postgres-tests.yml
index ce5321d..5784dff 100644
--- a/.github/workflows/postgres-tests.yml
+++ b/.github/workflows/postgres-tests.yml
@@ -46,7 +46,7 @@ jobs:
run: ./scripts/launch-postgres.sh
- name: Run Integration tests for ${{ matrix.name }}
- run: sbt "++2.13.10 It/testOnly
org.apache.pekko.persistence.jdbc.integration.Postgres*" ${{ matrix.extraOpts
}} -J-XX:+UnlockExperimentalVMOptions -J-XX:+UseJVMCICompiler
+ run: sbt "++2.13.11 It/testOnly
org.apache.pekko.persistence.jdbc.integration.Postgres*" ${{ matrix.extraOpts
}} -J-XX:+UnlockExperimentalVMOptions -J-XX:+UseJVMCICompiler
- name: Print logs on failure
if: ${{ failure() }}
diff --git a/.github/workflows/sqlserver-tests.yml
b/.github/workflows/sqlserver-tests.yml
index d469d2d..fb951a8 100644
--- a/.github/workflows/sqlserver-tests.yml
+++ b/.github/workflows/sqlserver-tests.yml
@@ -46,7 +46,7 @@ jobs:
run: ./scripts/launch-sqlserver.sh
- name: Run Integration tests for ${{ matrix.name }}
- run: sbt "++2.13.10 It/testOnly
org.apache.pekko.persistence.jdbc.integration.SqlServer*" ${{ matrix.extraOpts
}} -J-XX:+UnlockExperimentalVMOptions -J-XX:+UseJVMCICompiler
+ run: sbt "++2.13.11 It/testOnly
org.apache.pekko.persistence.jdbc.integration.SqlServer*" ${{ matrix.extraOpts
}} -J-XX:+UnlockExperimentalVMOptions -J-XX:+UseJVMCICompiler
- name: Print logs on failure
if: ${{ failure() }}
diff --git a/project/Dependencies.scala b/project/Dependencies.scala
index 0de3f51..0fe6bf9 100644
--- a/project/Dependencies.scala
+++ b/project/Dependencies.scala
@@ -11,8 +11,8 @@ import sbt._
object Dependencies {
// Keep in sync with .github CI build
- val Scala212 = "2.12.17"
- val Scala213 = "2.13.10"
+ val Scala212 = "2.12.18"
+ val Scala213 = "2.13.11"
val ScalaVersions = Seq(Scala212, Scala213)
val PekkoVersion = "0.0.0+26656-898c6970-SNAPSHOT"
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]