File tree 4 files changed +21
-20
lines changed 4 files changed +21
-20
lines changed Original file line number Diff line number Diff line change 1
- backport 2.x :
2
- - " *"
3
- - " */*"
4
- - " */**/*"
5
- - " */**/**/*"
6
- - " */**/**/**/*"
7
- - " */**/**/**/**/*"
8
- - " */**/**/**/**/**/*"
9
- - " */**/**/**/**/**/**/*"
10
- - " */**/**/**/**/**/**/**/*"
11
- - " */**/**/**/**/**/**/**/**/*"
12
- - " .github/**/*"
1
+ # backport 2.x:
2
+ # - "*"
3
+ # - "*/*"
4
+ # - "*/**/*"
5
+ # - "*/**/**/*"
6
+ # - "*/**/**/**/*"
7
+ # - "*/**/**/**/**/*"
8
+ # - "*/**/**/**/**/**/*"
9
+ # - "*/**/**/**/**/**/**/*"
10
+ # - "*/**/**/**/**/**/**/**/*"
11
+ # - "*/**/**/**/**/**/**/**/**/*"
12
+ # - ".github/**/*"
13
13
14
14
infra :
15
15
- " .github/**/*"
Original file line number Diff line number Diff line change 35
35
needs : Get-CI-Image-Tag
36
36
strategy :
37
37
matrix :
38
- java : [11, 17, 21]
38
+ java : [21]
39
39
name : Build and Test skills plugin on Linux
40
40
runs-on : ubuntu-latest
41
41
container :
69
69
build-MacOS :
70
70
strategy :
71
71
matrix :
72
- java : [11, 17, 21]
72
+ java : [21]
73
73
74
74
name : Build and Test skills Plugin on MacOS
75
75
needs : Get-CI-Image-Tag
94
94
build-windows :
95
95
strategy :
96
96
matrix :
97
- java : [11, 17, 21]
97
+ java : [21]
98
98
name : Build and Test skills plugin on Windows
99
99
needs : Get-CI-Image-Tag
100
100
runs-on : windows-latest
Original file line number Diff line number Diff line change 16
16
integ-test-with-security-linux :
17
17
strategy :
18
18
matrix :
19
- java : [11, 17, 21]
19
+ java : [21]
20
20
21
21
name : Run Security Integration Tests on Linux
22
22
runs-on : ubuntu-latest
40
40
# switching the user, as OpenSearch cluster can only be started as root/Administrator on linux-deb/linux-rpm/windows-zip.
41
41
run : |
42
42
chown -R 1000:1000 `pwd`
43
- su `id -un 1000` -c "whoami && java -version && ./gradlew integTest -Dsecurity.enabled=true"
43
+ su `id -un 1000` -c "whoami && java -version && ./gradlew integTest -Dsecurity.enabled=true"
Original file line number Diff line number Diff line change 5
5
6
6
import org.opensearch.gradle.test.RestIntegTestTask
7
7
import java.util.concurrent.Callable
8
- import org.opensearch.gradle.testclusters.OpenSearchCluster
9
8
import java.nio.file.Paths
10
9
import com.github.jengelman.gradle.plugins.shadow.ShadowPlugin
11
10
@@ -65,8 +64,10 @@ allprojects {
65
64
version = " ${ opensearch_build} "
66
65
}
67
66
68
- targetCompatibility = JavaVersion . VERSION_11
69
- sourceCompatibility = JavaVersion . VERSION_11
67
+ java {
68
+ targetCompatibility = JavaVersion . VERSION_21
69
+ sourceCompatibility = JavaVersion . VERSION_21
70
+ }
70
71
71
72
apply plugin : ' java'
72
73
apply plugin : ' jacoco'
You can’t perform that action at this time.
0 commit comments