Bulk Integration Test #55
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: Bulk Integration Test | |
on: [workflow_dispatch] | |
env: | |
GRADLE_OPTS: -Dhttp.keepAlive=false | |
jobs: | |
bulk-integration-test-run: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
jdk: [21] | |
test-run: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10] | |
steps: | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: temurin # Temurin is a distribution of adoptium | |
java-version: ${{ matrix.jdk }} | |
- uses: actions/checkout@v4 | |
- run: OPENDISTRO_SECURITY_TEST_OPENSSL_OPT=true ./gradlew test | |
- uses: alehechka/upload-tartifact@v2 | |
if: always() | |
with: | |
name: ${{ matrix.jdk }}-${{ matrix.test-run }}-reports | |
path: | | |
./build/reports/ | |
- name: check archive for debugging | |
if: always() | |
run: echo "Check the artifact ${{ matrix.jdk }}-${{ matrix.test-run }}-reports.zip for detailed test results" |