[#13109] IndexOutOfBoundsException encountered by LogsProcessor (#13120) #21
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
name: Component Tests (JDK 21) | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK 21 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: temurin | |
java-version: 21 | |
- name: Run Backend Linting | |
run: ./gradlew lint --continue | |
component-testing: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK 21 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: temurin | |
java-version: 21 | |
- name: Update Property File | |
run: mv src/test/resources/test.ci-ubuntu-latest.properties src/test/resources/test.properties | |
- name: Run Solr search service | |
run: docker-compose run -d -p 8983:8983 solr | |
- name: Run Backend Tests | |
run: ./gradlew createConfigs componentTests --continue |