This is an automated email from the ASF dual-hosted git repository.
pjfanning 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 bc90e0bf nightly test with latest pekko snapshots (#571)
bc90e0bf is described below
commit bc90e0bfc6a6ce8c3b977f79483ccb2eec394e57
Author: PJ Fanning <[email protected]>
AuthorDate: Tue Jul 21 08:49:24 2026 +0100
nightly test with latest pekko snapshots (#571)
* nightly test with latest pekko snapshots
* Update nightly-pekko-1.x-tests.yml
* Update build.sbt
---
.github/workflows/nightly-pekko-1.x-tests.yml | 2 +-
...ightly-pekko-1.x-tests.yml => nightly-pekko-tests.yml} | 15 +++++++--------
build.sbt | 14 +++++++++-----
3 files changed, 17 insertions(+), 14 deletions(-)
diff --git a/.github/workflows/nightly-pekko-1.x-tests.yml
b/.github/workflows/nightly-pekko-1.x-tests.yml
index 448cebe7..2a54bda3 100644
--- a/.github/workflows/nightly-pekko-1.x-tests.yml
+++ b/.github/workflows/nightly-pekko-1.x-tests.yml
@@ -4,7 +4,7 @@ permissions: {}
on:
schedule:
- - cron: "0 4 * * *"
+ - cron: "0 4 * * 0"
workflow_dispatch:
jobs:
diff --git a/.github/workflows/nightly-pekko-1.x-tests.yml
b/.github/workflows/nightly-pekko-tests.yml
similarity index 63%
copy from .github/workflows/nightly-pekko-1.x-tests.yml
copy to .github/workflows/nightly-pekko-tests.yml
index 448cebe7..36cd30ba 100644
--- a/.github/workflows/nightly-pekko-1.x-tests.yml
+++ b/.github/workflows/nightly-pekko-tests.yml
@@ -1,4 +1,4 @@
-name: Nightly Testing with Pekko 1.x
+name: Nightly Testing with Pekko (Main Branch)
permissions: {}
@@ -6,6 +6,7 @@ on:
schedule:
- cron: "0 4 * * *"
workflow_dispatch:
+ pull_request:
jobs:
test:
@@ -15,31 +16,29 @@ jobs:
fail-fast: false
matrix:
include:
- - { java-version: 8, scala-version: 2.12, sbt-opts: '' }
- - { java-version: 8, scala-version: 2.13, sbt-opts: '' }
- - { java-version: 8, scala-version: 3.3, 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@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 #
v7.0.0
with:
fetch-depth: 0
fetch-tags: true
- ref: 1.3.x
- name: Setup JDK ${{ matrix.java-version }}
- uses: actions/setup-java@03ad4de0992f5dab5e18fcb136590ce7c4a0ac95 #
v5.6.0
+ uses: actions/setup-java@0f481fcb613427c0f801b606911222b5b6f3083a #
v5.5.0
with:
distribution: temurin
java-version: ${{ matrix.java-version }}
- name: Install sbt
- uses: sbt/setup-sbt@6444f4c8111de4b9059c3975def104b03cfaa5f0 # v1.5.2
+ uses: sbt/setup-sbt@66fb4376e81982c7d92a4074170846fff88e2e30 # v1.5.0
- name: Cache Coursier cache
uses: coursier/cache-action@95e5b1029b6b86e7bac033ee44a0697d8a527d2d #
v8.1.1
- name: Run tests with Scala ${{ matrix.scala-version }} and Java ${{
matrix.java-version }}
- run: sbt -Dpekko.build.pekko.version=1.x "++${{ matrix.scala-version
}} test" ${{ matrix.sbt-opts }}
+ run: sbt -Dpekko.build.pekko.version=main "++${{ matrix.scala-version
}} test" ${{ matrix.sbt-opts }}
- name: Print logs on failure
if: ${{ failure() }}
diff --git a/build.sbt b/build.sbt
index 71e610a1..f884517f 100644
--- a/build.sbt
+++ b/build.sbt
@@ -124,11 +124,15 @@ lazy val docs = project
apidocRootPackage := "org.apache.pekko")
.settings(themeSettings)
-Global / onLoad := (Global / onLoad).value.andThen { s =>
- val v = version.value
- if (dynverGitDescribeOutput.value.hasNoTags)
- sLog.value.warn(s"Failed to derive version from git tags. Maybe run `git
fetch --unshallow`? Derived version: $v")
- s
+Global / onLoad := {
+ sLog.value.info(
+ s"Building Pekko HTTP ${version.value} against Pekko
${PekkoCoreDependency.version} on Scala ${scalaVersion.value}")
+ (Global / onLoad).value.andThen { s =>
+ val v = version.value
+ if (dynverGitDescribeOutput.value.hasNoTags)
+ sLog.value.warn(s"Failed to derive version from git tags. Maybe run `git
fetch --unshallow`? Derived version: $v")
+ s
+ }
}
addCommandAlias("checkCodeStyle", "scalafmtCheckAll; scalafmtSbtCheck;
javafmtCheckAll; +headerCheckAll")
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]