Add configurable path_prefix parameter #576
Workflow file for this run
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: End-to-End Tests - Log Analytics | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| strategy: | |
| matrix: | |
| java: [11, 17, 21, docker] | |
| test: ['basicLogEndToEndTest', 'parallelGrokStringSubstituteTest'] | |
| runner: [ubuntu-latest, ubuntu-24.04-arm] | |
| fail-fast: false | |
| runs-on: ${{ matrix.runner }} | |
| steps: | |
| - name: Set up JDK | |
| uses: actions/setup-java@v2 | |
| with: | |
| distribution: 'temurin' | |
| java-version: 11 | |
| - name: Checkout Data Prepper | |
| uses: actions/checkout@v2 | |
| - name: Run log analytics end-to-end tests with Gradle | |
| run: ./gradlew -PendToEndJavaVersion=${{ matrix.java }} :e2e-test:log:${{ matrix.test }} |