Queries created with criteria api with many joins - fix (#2129) #1617
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# Copyright (c) 2021, 2023 Contributors to the Eclipse Foundation | |
# | |
# This program and the accompanying materials are made available under the | |
# terms of the Eclipse Public License v. 2.0 which is available at | |
# http://www.eclipse.org/legal/epl-2.0, | |
# or the Eclipse Distribution License v. 1.0 which is available at | |
# http://www.eclipse.org/org/documents/edl-v10.php. | |
# | |
# SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause | |
# | |
name: EclipseLink PR build | |
on: | |
push: | |
branches: [ main, master ] | |
pull_request: | |
branches: [ main, master ] | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build_test_job: | |
name: Test on JDK ${{ matrix.java_version }} | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
java_version: [ 21 ] | |
steps: | |
- name: Start MySQL Database | |
run: | | |
sudo systemctl start mysql.service | |
mysql -e 'SET GLOBAL log_bin_trust_function_creators = 1;' -uroot -proot | |
mysql -e 'CREATE DATABASE ecltests;' -uroot -proot | |
mysql -e 'SHOW DATABASES;' -uroot -proot | |
mysql -e 'status;' -uroot -proot | |
- name: Checkout for build | |
uses: actions/checkout@v3 | |
- name: Set up JDK | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'zulu' | |
java-version: ${{ matrix.java_version }} | |
cache: maven | |
- name: Execute Tests on JDK ${{ matrix.java_version }} | |
run: mvn -B -V -U -C -Pstaging,oss-release,test-lrg,mysql clean verify -Dgpg.skip=true -Dwarn.limit=15 -Dcomp.xlint=-Xlint:none | |
common_validations_job: | |
name: Common Validations | |
runs-on: ubuntu-latest | |
needs: build_test_job | |
steps: | |
- name: Checkout for build | |
uses: actions/checkout@v3 | |
- name: Set up JDK | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'zulu' | |
java-version: 17 | |
cache: maven | |
- name: Execute Validations | |
run: mvn -B -V org.owasp:dependency-check-maven:aggregate | |
- name: Upload dependency-check | |
uses: actions/upload-artifact@v3 | |
with: | |
name: dependency-check.html | |
path: target/dependency-check-report.html |