Skip to content

Commit fda450d

Browse files
Move end-to-end tests to a separate workflow (#1052)
Signed-off-by: Norman Jordan <[email protected]> (cherry picked from commit 0dc2d2a) Signed-off-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 261d106 commit fda450d

File tree

3 files changed

+42
-2
lines changed

3 files changed

+42
-2
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
name: End-to-End Tests
2+
3+
on:
4+
pull_request:
5+
push:
6+
7+
jobs:
8+
build:
9+
strategy:
10+
fail-fast: false
11+
matrix:
12+
entry:
13+
- { os: ubuntu-latest, java: 11 }
14+
runs-on: ubuntu-latest
15+
16+
steps:
17+
- uses: actions/checkout@v3
18+
19+
- name: Set up JDK 11
20+
uses: actions/setup-java@v3
21+
with:
22+
distribution: 'temurin'
23+
java-version: 11
24+
25+
- name: Set up SBT
26+
uses: sbt/setup-sbt@v1
27+
28+
- name: Set SBT_OPTS
29+
# Needed to extend the JVM memory size to avoid OutOfMemoryError for HTML test report
30+
run: echo "SBT_OPTS=-Xmx2G" >> $GITHUB_ENV
31+
32+
- name: End-to-End Test
33+
run: sbt e2etest/test
34+
35+
- name: Upload test report
36+
if: always() # Ensures the artifact is saved even if tests fail
37+
uses: actions/upload-artifact@v4
38+
with:
39+
name: test-reports
40+
path: target/test-reports # Adjust this path if necessary

.github/workflows/test-and-build-workflow.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
run: echo "SBT_OPTS=-Xmx2G" >> $GITHUB_ENV
3434

3535
- name: Integ Test
36-
run: sbt integtest/integration e2etest/test
36+
run: sbt integtest/integration
3737

3838
- name: Upload test report
3939
if: always() # Ensures the artifact is saved even if tests fail

e2e-test/src/test/scala/org/opensearch/spark/e2e/EndToEndITSuite.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ class EndToEndITSuite extends AnyFlatSpec with TableDrivenPropertyChecks with Be
8686
}
8787
}
8888
}.start()
89-
val completed = dockerProcess.waitFor(30, TimeUnit.MINUTES)
89+
val completed = dockerProcess.waitFor(20, TimeUnit.MINUTES)
9090
stopReading = true
9191
if (!completed) {
9292
throw new IllegalStateException("Unable to start docker cluster")

0 commit comments

Comments
 (0)