This is an automated email from the ASF dual-hosted git repository.

fanningpj pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/pekko-persistence-jdbc.git


The following commit(s) were added to refs/heads/main by this push:
     new 018447e  Update sbt to 1.10.0 (#189)
018447e is described below

commit 018447e9c6a6d31c4d4fb97a997f6d42fb038240
Author: scala-steward-asf[bot] 
<147768647+scala-steward-asf[bot]@users.noreply.github.com>
AuthorDate: Tue May 14 23:40:35 2024 +0100

    Update sbt to 1.10.0 (#189)
    
    * Update sbt to 1.10.0
    
    * try to fix tests
    
    * Update build.sbt
    
    * try to fix tests
    
    * Update h2-test.yml
    
    ---------
    
    Co-authored-by: scala-steward-asf[bot] 
<147768647+scala-steward-asf[bot]@users.noreply.github.com>
    Co-authored-by: PJ Fanning <[email protected]>
---
 .github/workflows/h2-test.yml         | 5 ++++-
 .github/workflows/mysql-tests.yml     | 2 +-
 .github/workflows/oracle-tests.yml    | 2 +-
 .github/workflows/postgres-tests.yml  | 2 +-
 .github/workflows/sqlserver-tests.yml | 2 +-
 build.sbt                             | 2 +-
 project/build.properties              | 2 +-
 7 files changed, 10 insertions(+), 7 deletions(-)

diff --git a/.github/workflows/h2-test.yml b/.github/workflows/h2-test.yml
index ccfc45a..7893018 100644
--- a/.github/workflows/h2-test.yml
+++ b/.github/workflows/h2-test.yml
@@ -23,6 +23,9 @@ jobs:
           - { java-version: 11, scala-version: 2.12, sbt-opts: 
'-J-XX:+UnlockExperimentalVMOptions -J-XX:+UseJVMCICompiler' }
           - { java-version: 11, scala-version: 2.13, sbt-opts: 
'-J-XX:+UnlockExperimentalVMOptions -J-XX:+UseJVMCICompiler' }
           - { java-version: 11, scala-version: 3.3,  sbt-opts: 
'-J-XX:+UnlockExperimentalVMOptions -J-XX:+UseJVMCICompiler' }
+          - { java-version: 17, scala-version: 2.12, sbt-opts: '' }
+          - { java-version: 17, scala-version: 2.13, sbt-opts: '' }
+          - { java-version: 17, scala-version: 3.3,  sbt-opts: '' }
     steps:
       - name: Checkout
         uses: actions/checkout@v4
@@ -46,7 +49,7 @@ jobs:
         uses: coursier/cache-action@v6
 
       - name: Run tests with Scala ${{ matrix.scala-version }} and Java ${{ 
matrix.java-version }}
-        run: sbt "++${{ matrix.scala-version }} test" ${{ matrix.sbt-opts }}
+        run: sbt ++${{ matrix.scala-version }} "core/test; migrator/test" ${{ 
matrix.sbt-opts }}
 
       - name: Print logs on failure
         if: ${{ failure() }}
diff --git a/.github/workflows/mysql-tests.yml 
b/.github/workflows/mysql-tests.yml
index c5c8c70..1b0c735 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 integration/testOnly 
org.apache.pekko.persistence.jdbc.integration.MySQL*"  ${{ matrix.extraOpts }} 
-J-XX:+UnlockExperimentalVMOptions -J-XX:+UseJVMCICompiler
+        run: sbt ++2.13 "integration/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 1c6e62d..894c737 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 integration/testOnly 
org.apache.pekko.persistence.jdbc.integration.Oracle*"  ${{ matrix.extraOpts }} 
-J-XX:+UnlockExperimentalVMOptions -J-XX:+UseJVMCICompiler
+        run: sbt ++2.13 "integration/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 5568e9b..31233bb 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 integration/testOnly 
org.apache.pekko.persistence.jdbc.integration.Postgres*"  ${{ matrix.extraOpts 
}} -J-XX:+UnlockExperimentalVMOptions -J-XX:+UseJVMCICompiler
+        run: sbt ++2.13 "integration/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 c7dfa0e..a8901bd 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 integration/testOnly 
org.apache.pekko.persistence.jdbc.integration.SqlServer*"  ${{ matrix.extraOpts 
}} -J-XX:+UnlockExperimentalVMOptions -J-XX:+UseJVMCICompiler
+        run: sbt ++2.13 "integration/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/build.sbt b/build.sbt
index cadbfa2..7e418d9 100644
--- a/build.sbt
+++ b/build.sbt
@@ -25,7 +25,7 @@ lazy val `pekko-persistence-jdbc` = project
   .in(file("."))
   .enablePlugins(ScalaUnidocPlugin)
   .disablePlugins(MimaPlugin, SitePlugin)
-  .aggregate(core, docs, migrator)
+  .aggregate(core, migrator, integration, docs)
   .settings(
     name := "pekko-persistence-jdbc-root",
     publish / skip := true)
diff --git a/project/build.properties b/project/build.properties
index 3492441..1524298 100644
--- a/project/build.properties
+++ b/project/build.properties
@@ -13,4 +13,4 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 #
-sbt.version=1.9.9
+sbt.version=1.10.0


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to