forked from opensearch-project/OpenSearch
-
Notifications
You must be signed in to change notification settings - Fork 0
39 lines (38 loc) · 1.01 KB
/
gradle-integtest.yml
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
37
38
39
name: Gradle Integtest (GH)
on:
workflow_dispatch:
push:
branches-ignore:
- 'backport/**'
- 'create-pull-request/**'
- 'dependabot/**'
pull_request_target:
types: [opened, synchronize, reopened]
jobs:
gradle-integtest:
runs-on: warp-ubuntu-latest-x64-4x
timeout-minutes: 360
strategy:
fail-fast: false
matrix:
java: [ 17 ]
steps:
- name: Checkout OpenSearch repo
uses: actions/checkout@v4
#with:
# ref: ${{ github.event.pull_request.head.sha }}
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v4
with:
java-version: ${{ matrix.java }}
distribution: temurin
- name: Run gradle integTest
run: |
./gradlew integTest --continue
- name: Upload test results
uses: actions/upload-artifact@v4
if: always()
with:
name: integ-test-results-java-${{ matrix.java }}
path: |
**/build/reports/tests