compositeId added for ref_type search parameters. #2759
Workflow file for this run
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: Reindex - Integration Tests | |
on: | |
pull_request: | |
paths-ignore: | |
- '**.md' | |
- 'docs/**' | |
- 'demo/**' | |
- '.github/workflows/site.yml' | |
- '.github/workflows/release.yml' | |
jobs: | |
reindex: | |
runs-on: ubuntu-latest | |
if: "!contains(github.event.pull_request.labels.*.name, 'ci-skip')" | |
strategy: | |
matrix: | |
datastore: [ 'derby', 'postgres' ] | |
fail-fast: false | |
steps: | |
- name: Checkout source code | |
uses: actions/[email protected] | |
- name: Set up java | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: '11' | |
cache: 'maven' | |
- name: Setup prerequisites | |
env: | |
WORKSPACE: ${{ github.workspace }} | |
run: bash build/reindex/bin/setup-prerequisites.sh ${{matrix.datastore}} | |
- name: Integration Tests | |
env: | |
WORKSPACE: ${{ github.workspace }} | |
run: | | |
bash build/reindex/bin/pre-integration-test.sh ${{matrix.datastore}} | |
bash build/reindex/bin/integration-test.sh ${{matrix.datastore}} | |
bash build/reindex/bin/post-integration-test.sh ${{matrix.datastore}} | |
- name: Gather error logs | |
if: failure() | |
env: | |
WORKSPACE: ${{ github.workspace }} | |
run: bash build/common/gather-posttest-logs.sh reindex ${{matrix.datastore}} | |
- name: Upload logs | |
if: always() | |
uses: actions/[email protected] | |
with: | |
name: integration-test-results-${{ matrix.datastore }} | |
path: build/reindex/integration-test-results | |
concurrency: | |
group: reindex-${{ github.event.pull_request.number || github.sha }} | |
cancel-in-progress: true |