File tree 3 files changed +42
-2
lines changed
e2e-test/src/test/scala/org/opensearch/spark/e2e
3 files changed +42
-2
lines changed Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change 33
33
run : echo "SBT_OPTS=-Xmx2G" >> $GITHUB_ENV
34
34
35
35
- name : Integ Test
36
- run : sbt integtest/integration e2etest/test
36
+ run : sbt integtest/integration
37
37
38
38
- name : Upload test report
39
39
if : always() # Ensures the artifact is saved even if tests fail
Original file line number Diff line number Diff line change @@ -86,7 +86,7 @@ class EndToEndITSuite extends AnyFlatSpec with TableDrivenPropertyChecks with Be
86
86
}
87
87
}
88
88
}.start()
89
- val completed = dockerProcess.waitFor(30 , TimeUnit .MINUTES )
89
+ val completed = dockerProcess.waitFor(20 , TimeUnit .MINUTES )
90
90
stopReading = true
91
91
if (! completed) {
92
92
throw new IllegalStateException (" Unable to start docker cluster" )
You can’t perform that action at this time.
0 commit comments