solomax commented on code in PR #144:
URL: https://github.com/apache/openjpa/pull/144#discussion_r3802023338
##########
.github/workflows/ci.yml:
##########
@@ -14,26 +14,37 @@
# specific language governing permissions and limitations under the License.
#
name: Java CI
-on: [push]
+on:
+ push:
+ branches: [master]
+concurrency:
+ group: ${{ github.workflow }}-${{ github.ref }}
+ cancel-in-progress: true
env:
MAVEN_OPTS: -Dmaven.artifact.threads=256
-Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn
jobs:
build:
runs-on: ubuntu-latest
+ strategy:
+ fail-fast: false
+ matrix:
+ java: [17, 21]
+ profile: [test-derby, test-h2]
+ name: build (Java ${{ matrix.java }}, ${{ matrix.profile }})
steps:
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v7
- name: Setup Java JDK
- uses: actions/setup-java@v4
+ uses: actions/setup-java@v5
with:
distribution: 'zulu'
- java-version: 11
+ java-version: ${{ matrix.java }}
- name: 'Cache Maven packages'
- uses: actions/cache@v4
+ uses: actions/cache@v5
with:
path: ~/.m2
key: 'cache'
Review Comment:
Hopefully fixed with
[ef99961](https://github.com/apache/openjpa/pull/144/commits/ef99961d4519f4a476808a2dd3f962bba1399d66)
I'll wait for the build and check
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]