-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Windows IntegTest support on Jenkins Libs (#308)
Signed-off-by: Peter Zhu <[email protected]>
- Loading branch information
1 parent
e4e7078
commit 96b32c7
Showing
11 changed files
with
3,218 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,132 @@ | ||
--- | ||
schema-version: '1.0' | ||
name: OpenSearch | ||
ci: | ||
image: | ||
name: opensearchstaging/ci-runner:ci-runner-centos7-opensearch-build-v2 | ||
args: -e JAVA_HOME=/opt/java/openjdk-17 | ||
components: | ||
- name: alerting | ||
integ-test: | ||
test-configs: | ||
- with-security | ||
- without-security | ||
additional-cluster-configs: | ||
plugins.destination.host.deny_list: [10.0.0.0/8, 127.0.0.1] | ||
bwc-test: | ||
test-configs: | ||
- with-security | ||
|
||
- name: anomaly-detection | ||
integ-test: | ||
build-dependencies: | ||
- job-scheduler | ||
test-configs: | ||
- with-security | ||
- without-security | ||
bwc-test: | ||
test-configs: | ||
- with-security | ||
|
||
- name: asynchronous-search | ||
integ-test: | ||
test-configs: | ||
- with-security | ||
- without-security | ||
|
||
- name: cross-cluster-replication | ||
integ-test: | ||
topology: | ||
- cluster_name: leader | ||
data_nodes: 1 | ||
cluster_manager_nodes: 0 | ||
- cluster_name: follower | ||
data_nodes: 1 | ||
cluster_manager_nodes: 0 | ||
test-configs: | ||
- with-security | ||
- without-security | ||
|
||
- name: geospatial | ||
integ-test: | ||
test-configs: | ||
- with-security | ||
- without-security | ||
|
||
- name: index-management | ||
integ-test: | ||
build-dependencies: | ||
- job-scheduler | ||
test-configs: | ||
- with-security | ||
- without-security | ||
additional-cluster-configs: | ||
path.repo: [/tmp] | ||
bwc-test: | ||
test-configs: | ||
- with-security | ||
|
||
- name: k-NN | ||
integ-test: | ||
test-configs: | ||
- with-security | ||
- without-security | ||
|
||
- name: ml-commons | ||
integ-test: | ||
test-configs: | ||
- with-security | ||
- without-security | ||
|
||
- name: neural-search | ||
integ-test: | ||
test-configs: | ||
- with-security | ||
- without-security | ||
|
||
- name: notifications | ||
working-directory: notifications | ||
integ-test: | ||
test-configs: | ||
- with-security | ||
- without-security | ||
bwc-test: | ||
test-configs: | ||
- with-security | ||
|
||
- name: opensearch-observability | ||
integ-test: | ||
test-configs: | ||
- with-security | ||
- without-security | ||
bwc-test: | ||
test-configs: | ||
- with-security | ||
|
||
- name: opensearch-reports | ||
integ-test: | ||
test-configs: | ||
- with-security | ||
- without-security | ||
|
||
- name: security | ||
integ-test: | ||
test-configs: | ||
- with-security | ||
|
||
- name: security-analytics | ||
integ-test: | ||
test-configs: | ||
- with-security | ||
- without-security | ||
|
||
- name: sql | ||
integ-test: | ||
test-configs: | ||
- with-security | ||
- without-security | ||
additional-cluster-configs: | ||
script.context.field.max_compilations_rate: 1000/1m | ||
bwc-test: | ||
test-configs: | ||
- with-security |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
/* | ||
* Copyright OpenSearch Contributors | ||
* SPDX-License-Identifier: Apache-2.0 | ||
* | ||
* The OpenSearch Contributors require contributions made to | ||
* this file be licensed under the Apache-2.0 license or a | ||
* compatible open source license. | ||
*/ | ||
|
||
pipeline { | ||
agent none | ||
stages { | ||
stage('integ-test') { | ||
steps { | ||
script { | ||
runIntegTestScript( | ||
jobName: 'dummy_job', | ||
componentName: 'OpenSearch', | ||
buildManifest: 'tests/data/opensearch-2.8.0-build-windows.yml', | ||
testManifest: 'tests/data/opensearch-2.8.0-test.yml', | ||
) | ||
} | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters