compositeId filled for reference type search parameters #5047
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: Integration - Persistence | |
on: | |
pull_request: | |
paths-ignore: | |
- '**.md' | |
- 'docs/**' | |
- 'demo/**' | |
- '.github/workflows/site.yml' | |
- '.github/workflows/release.yml' | |
jobs: | |
e2e-persistence: | |
runs-on: ubuntu-latest | |
if: "!contains(github.event.pull_request.labels.*.name, 'ci-skip')" | |
strategy: | |
matrix: | |
java: [ '11' ] | |
persistence: [ 'postgres' ] | |
fail-fast: false | |
steps: | |
- name: Checkout source code | |
uses: actions/checkout@v2.3.3 | |
- name: Set up java | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: ${{ matrix.java }} | |
cache: 'maven' | |
- name: Setup prerequisites | |
env: | |
WORKSPACE: ${{ github.workspace }} | |
run: bash build/persistence/bin/setup-prerequisites.sh ${{matrix.persistence}} | |
- name: Server Integration Tests - Additional Persistence Layers | |
env: | |
WORKSPACE: ${{ github.workspace }} | |
run: | | |
bash build/persistence/bin/pre-integration-test.sh ${{matrix.persistence}} | |
bash build/persistence/bin/integration-test.sh ${{matrix.persistence}} | |
bash build/persistence/bin/post-integration-test.sh ${{matrix.persistence}} | |
- name: Gather error logs | |
if: failure() | |
env: | |
WORKSPACE: ${{ github.workspace }} | |
run: bash build/persistence/bin/gather-logs.sh ${{matrix.persistence}} | |
- name: Upload logs | |
if: always() | |
uses: actions/upload-artifact@v2.2.0 | |
with: | |
name: integration-test-results-${{ matrix.persistence }}-${{ matrix.java }} | |
path: build/persistence/integration-test-results | |
concurrency: | |
group: persistence-${{ github.event.pull_request.number || github.sha }} | |
cancel-in-progress: true |