Disable FAIL_ON_UNKNOWN_PROPERTIES in SqsMessageParser ObjectMapper (… #13
This file contains hidden or 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
| # This workflow will build a Java project with Gradle | |
| # For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle | |
| name: Performance Tests Compile | |
| on: | |
| push: | |
| branches: [ main ] | |
| paths: | |
| - 'performance-test/**' | |
| - '*gradle*' | |
| pull_request: | |
| paths: | |
| - 'performance-test/**' | |
| - '*gradle*' | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| strategy: | |
| matrix: | |
| java: [11, 17, 21] | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Set up JDK ${{ matrix.java }} | |
| uses: actions/setup-java@be666c2fcd27ec809703dec50e508c2fdc7f6654 # v5.2.0 | |
| with: | |
| java-version: ${{ matrix.java }} | |
| distribution: temurin | |
| - name: Checkout Data Prepper | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 | |
| - name: Set up Gradle | |
| uses: gradle/actions/setup-gradle@50e97c2cd7a37755bbfafc9c5b7cafaece252f6e # v6.1.0 | |
| with: | |
| add-job-summary: on-failure | |
| - name: Build performance tests with Gradle | |
| run: ./gradlew :performance-test:compileGatlingJava |