forked from opensearch-project/security
-
Notifications
You must be signed in to change notification settings - Fork 0
36 lines (28 loc) · 864 Bytes
/
integration-tests.yml
File metadata and controls
36 lines (28 loc) · 864 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
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, 25]
test-run: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
steps:
- uses: actions/setup-java@v5
with:
distribution: temurin # Temurin is a distribution of adoptium
java-version: ${{ matrix.jdk }}
- uses: actions/checkout@v6
- run: ./gradlew test
- uses: actions/upload-artifact@v7
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"