compositeId added for ref_type search parameters. #4001
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 - Notifications | |
on: | |
pull_request: | |
paths-ignore: | |
- '**.md' | |
- 'docs/**' | |
- 'demo/**' | |
- '.github/workflows/site.yml' | |
- '.github/workflows/release.yml' | |
jobs: | |
e2e-notifications: | |
runs-on: ubuntu-latest | |
if: "!contains(github.event.pull_request.labels.*.name, 'ci-skip')" | |
strategy: | |
matrix: | |
java: [ '11' ] | |
notifications: [ 'kafka' ] | |
fail-fast: false | |
steps: | |
- name: Checkout source code | |
uses: actions/[email protected] | |
- name: Setup 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/notifications/bin/setup-prerequisites.sh ${{matrix.notifications}} | |
- name: Server Integration Tests - Notifications | |
env: | |
WORKSPACE: ${{ github.workspace }} | |
shell: 'script -q -e -c "bash {0}"' | |
run: | | |
bash build/notifications/bin/pre-integration-test.sh ${{matrix.notifications}} | |
bash build/notifications/bin/integration-test.sh ${{matrix.notifications}} | |
bash build/notifications/bin/post-integration-test.sh ${{matrix.notifications}} | |
- name: Gather error logs | |
if: failure() | |
env: | |
WORKSPACE: ${{ github.workspace }} | |
run: bash build/notifications/bin/gather-logs.sh ${{matrix.notifications}} | |
- name: Upload logs | |
if: always() | |
uses: actions/[email protected] | |
with: | |
name: integration-test-results-${{ matrix.notifications }}-${{ matrix.java }} | |
path: build/notifications/${{ matrix.notifications }}/integration-test-results | |
concurrency: | |
group: notification-${{ github.event.pull_request.number || github.sha }} | |
cancel-in-progress: true |