-
Notifications
You must be signed in to change notification settings - Fork 115
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch '2.x' into 2.x-backport-1131
- Loading branch information
Showing
202 changed files
with
48,092 additions
and
2,005 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
* -text |
Validating CODEOWNERS rules …
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 |
---|---|---|
@@ -1 +1 @@ | ||
* @tianleh @kavilla @ohltyler @CCongWang @ashwin-pc @peterzhuamazon @ananzh @prudhvigodithi @xluo-aws @Hailong-am @SuZhou-Joe @ruanyl @wanglam @raintygao | ||
* @tianleh @kavilla @ohltyler @CCongWang @ashwin-pc @peterzhuamazon @ananzh @prudhvigodithi @xluo-aws @Hailong-am @SuZhou-Joe @ruanyl @wanglam @raintygao @zhongnansu @yujin-emma @yubonluo |
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
119 changes: 119 additions & 0 deletions
119
.github/workflows/cypress-workflow-bundle-snapshot-based-ci-groups.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,119 @@ | ||
name: Cypress test for core Dashboards | ||
on: | ||
pull_request: | ||
branches: ['**'] | ||
paths: | ||
- '.github/workflows/cypress-workflow-bundle-snapshot-based-ci-groups.yml' | ||
- 'cypress/**/core-opensearch-dashboards/**' | ||
- 'cypress/utils/dashboards/**' | ||
- 'package.json' | ||
- '.github/actions/start-opensearch/action.yml' | ||
- '.github/workflows/release-e2e-workflow-template.yml' | ||
|
||
push: | ||
branches: ['**'] | ||
paths: | ||
- '.github/workflows/cypress-workflow-bundle-snapshot-based-ci-groups.yml' | ||
- 'cypress/**/core-opensearch-dashboards/**' | ||
- 'cypress/utils/dashboards/**' | ||
- 'package.json' | ||
- '.github/actions/start-opensearch/action.yml' | ||
- '.github/workflows/release-e2e-workflow-template.yml' | ||
|
||
env: | ||
CI_GROUPS: "1,2,3,4,5,6,7,8,9" | ||
|
||
jobs: | ||
get_spec: | ||
runs-on: 'ubuntu-latest' | ||
outputs: | ||
MATRIX_INCLUDES: ${{ steps.get_spec.outputs.MATRIX_INCLUDES }} | ||
steps: | ||
- name: Checkout Branch | ||
uses: actions/checkout@v3 | ||
- name: Checkout cypress-test | ||
uses: actions/checkout@v2 | ||
with: | ||
repository: ${{github.repository}} | ||
path: spec-detect | ||
- id: get_spec | ||
name: Get specs array | ||
run: | | ||
cd spec-detect | ||
source ./test_finder.sh | ||
result="[" | ||
## split CI_Groups into array | ||
IFS="," read -a groups <<< "${{ env.CI_GROUPS }}" | ||
for group in "${groups[@]}"; do | ||
item="{\"ciGroup\": \"${group}\", \"specs\": " | ||
specs_of_ci_group=`ci_grouped_specs_finder ${group}` | ||
FORMATTED_SPEC="\"${specs_of_ci_group}\" }" | ||
if [[ "${result}" != "[" ]]; | ||
then | ||
result+="," | ||
fi | ||
item+="${FORMATTED_SPEC}" | ||
result+="${item}" | ||
done | ||
result+=']'; | ||
echo ${result} | ||
echo "MATRIX_INCLUDES=${result}" >> "$GITHUB_OUTPUT" | ||
tests-with-security: | ||
needs: ["get_spec"] | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
include: ${{ fromJSON(needs.get_spec.outputs.MATRIX_INCLUDES) }} | ||
name: (security)osd:ciGroup${{ matrix.ciGroup }} | ||
uses: ./.github/workflows/release-e2e-workflow-template.yml | ||
with: | ||
test-name: "osd:ciGroup${{ matrix.ciGroup }}" | ||
test-command: env CYPRESS_NO_COMMAND_LOG=1 CYPRESS_ML_COMMONS_DASHBOARDS_ENABLED=true CYPRESS_VISBUILDER_ENABLED=true CYPRESS_DATASOURCE_MANAGEMENT_ENABLED=true yarn cypress:run-with-security --browser chromium --spec '${{ matrix.specs }}' | ||
osd-serve-args: --data_source.enabled=true --data_source.ssl.verificationMode=none --vis_builder.enabled=true --ml_commons_dashboards.enabled=true | ||
artifact-name-suffix: "-with-security-ciGroup${{ matrix.ciGroup }}" | ||
|
||
tests-without-security: | ||
needs: ["get_spec"] | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
include: ${{ fromJSON(needs.get_spec.outputs.MATRIX_INCLUDES) }} | ||
name: (non-security)osd:ciGroup${{ matrix.ciGroup }} | ||
uses: ./.github/workflows/release-e2e-workflow-template.yml | ||
with: | ||
test-name: "osd:ciGroup${{ matrix.ciGroup }}" | ||
test-command: env CYPRESS_NO_COMMAND_LOG=1 CYPRESS_ML_COMMONS_DASHBOARDS_ENABLED=true CYPRESS_VISBUILDER_ENABLED=true CYPRESS_DATASOURCE_MANAGEMENT_ENABLED=true yarn cypress:run-without-security --browser chromium --spec '${{ matrix.specs }}' | ||
osd-serve-args: --data_source.enabled=true --data_source.ssl.verificationMode=none --vis_builder.enabled=true --ml_commons_dashboards.enabled=true | ||
security-enabled: false | ||
artifact-name-suffix: "-without-security-ciGroup${{ matrix.ciGroup }}" | ||
|
||
|
||
# Hold on windows test cases | ||
# https://github.com/opensearch-project/opensearch-dashboards-functional-test/actions/runs/9377445544/job/25819022121?pr=1352 | ||
# tests-with-security-windows: | ||
# needs: ["get_spec"] | ||
# strategy: | ||
# fail-fast: false | ||
# matrix: | ||
# include: ${{ fromJSON(needs.get_spec.outputs.MATRIX_INCLUDES) }} | ||
# name: (security)osd:ciGroup${{ matrix.ciGroup }} | ||
# uses: ./.github/workflows/release-e2e-workflow-template-windows.yml | ||
# with: | ||
# test-name: "osd:ciGroup${{ matrix.ciGroup }}" | ||
# test-command: env CYPRESS_NO_COMMAND_LOG=1 CYPRESS_VISBUILDER_ENABLED=true CYPRESS_DATASOURCE_MANAGEMENT_ENABLED=true yarn cypress:run-with-security --browser chrome --spec '${{ matrix.specs }}' | ||
|
||
# tests-without-security-windows: | ||
# needs: ["get_spec"] | ||
# strategy: | ||
# fail-fast: false | ||
# matrix: | ||
# include: ${{ fromJSON(needs.get_spec.outputs.MATRIX_INCLUDES) }} | ||
# name: (non-security)osd:ciGroup${{ matrix.ciGroup }} | ||
# uses: ./.github/workflows/release-e2e-workflow-template-windows.yml | ||
# with: | ||
# test-name: "osd:ciGroup${{ matrix.ciGroup }}" | ||
# test-command: env CYPRESS_NO_COMMAND_LOG=1 CYPRESS_VISBUILDER_ENABLED=true CYPRESS_DATASOURCE_MANAGEMENT_ENABLED=true yarn cypress:run-without-security --browser chrome --spec '${{ matrix.specs }}' | ||
# security-enabled: false |
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
14 changes: 8 additions & 6 deletions
14
.github/workflows/cypress-workflow-bundle-snapshot-based.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,30 @@ | ||
name: Bundle Snapshot based E2E Cypress tests workflow for core Dashboards | ||
on: | ||
pull_request: | ||
branches: [ '**' ] | ||
branches: ['**'] | ||
paths: | ||
- 'cypress/**/core-opensearch-dashboards/**' | ||
- 'cypress/utils/dashboards/**' | ||
- '.github/workflows/cypress-workflow-bundle-snapshot-based.yml' | ||
push: | ||
branches: [ '**' ] | ||
branches: ['**'] | ||
paths: | ||
- 'cypress/**/core-opensearch-dashboards/**' | ||
- 'cypress/utils/dashboards/**' | ||
- '.github/workflows/cypress-workflow-bundle-snapshot-based.yml' | ||
|
||
jobs: | ||
tests-with-security: | ||
uses: ./.github/workflows/release-e2e-workflow-template.yml | ||
with: | ||
test-name: Core Dashboards using Bundle Snapshot | ||
test-command: env CYPRESS_NO_COMMAND_LOG=1 CYPRESS_ML_COMMONS_DASHBOARDS_ENABLED=true CYPRESS_VISBUILDER_ENABLED=true CYPRESS_DATASOURCE_MANAGEMENT_ENABLED=true yarn cypress:run-with-security --browser chromium --spec 'cypress/integration/core-opensearch-dashboards/opensearch-dashboards/**/*.js' | ||
osd-serve-args: --data_source.enabled=true --data_source.ssl.verificationMode=none --vis_builder.enabled=true --ml_commons_dashboards.enabled=true | ||
test-command: env CYPRESS_NO_COMMAND_LOG=1 CYPRESS_ML_COMMONS_DASHBOARDS_ENABLED=true CYPRESS_VISBUILDER_ENABLED=true CYPRESS_UIMETRIC_ENABLED=true CYPRESS_DATASOURCE_MANAGEMENT_ENABLED=true yarn cypress:run-with-security --browser chromium --spec 'cypress/integration/core-opensearch-dashboards/opensearch-dashboards/**/*.js' | ||
osd-serve-args: --data_source.enabled=true --data_source.ssl.verificationMode=none --vis_builder.enabled=true --ml_commons_dashboards.enabled=true --usageCollection.uiMetric.enabled=true | ||
|
||
tests-without-security: | ||
uses: ./.github/workflows/release-e2e-workflow-template.yml | ||
with: | ||
test-name: Core Dashboards using Bundle Snapshot | ||
test-command: env CYPRESS_NO_COMMAND_LOG=1 CYPRESS_ML_COMMONS_DASHBOARDS_ENABLED=true CYPRESS_VISBUILDER_ENABLED=true CYPRESS_DATASOURCE_MANAGEMENT_ENABLED=true yarn cypress:run-without-security --browser chromium --spec 'cypress/integration/core-opensearch-dashboards/opensearch-dashboards/**/*.js' | ||
osd-serve-args: --data_source.enabled=true --data_source.ssl.verificationMode=none --vis_builder.enabled=true --ml_commons_dashboards.enabled=true | ||
test-command: env CYPRESS_NO_COMMAND_LOG=1 CYPRESS_ML_COMMONS_DASHBOARDS_ENABLED=true CYPRESS_VISBUILDER_ENABLED=true CYPRESS_UIMETRIC_ENABLED=true CYPRESS_DATASOURCE_MANAGEMENT_ENABLED=true yarn cypress:run-without-security --browser chromium --spec 'cypress/integration/core-opensearch-dashboards/opensearch-dashboards/**/*.js' | ||
osd-serve-args: --data_source.enabled=true --data_source.ssl.verificationMode=none --vis_builder.enabled=true --ml_commons_dashboards.enabled=true --usageCollection.uiMetric.enabled=true | ||
security-enabled: false |
24 changes: 24 additions & 0 deletions
24
.github/workflows/dashboards-flow-framework-e2e-workflow.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
name: Flow Framework Release tests workflow in Bundled OpenSearch Dashboards | ||
on: | ||
pull_request: | ||
branches: [ '**' ] | ||
jobs: | ||
changes: | ||
runs-on: ubuntu-latest | ||
outputs: | ||
tests: ${{ steps.filter.outputs.tests }} | ||
steps: | ||
- uses: dorny/paths-filter@v2 | ||
id: filter | ||
with: | ||
filters: | | ||
tests: | ||
- 'cypress/**/dashboards-flow-framework/**' | ||
tests: | ||
needs: changes | ||
if: ${{ needs.changes.outputs.tests == 'true' }} | ||
uses: ./.github/workflows/release-e2e-workflow-template.yml | ||
with: | ||
test-name: Flow Framework | ||
test-command: env CYPRESS_NO_COMMAND_LOG=1 yarn cypress:run-with-security --browser chromium --spec 'cypress/integration/plugins/dashboards-flow-framework/*' |
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,19 @@ | ||
name: E2E Cypress tests workflow for MDS | ||
on: | ||
pull_request: | ||
branches: ['**'] | ||
paths: | ||
- 'cypress/integration/core-opensearch-dashboards/opensearch-dashboards/**/mds*.js' | ||
push: | ||
branches: ['**'] | ||
paths: | ||
- 'cypress/integration/core-opensearch-dashboards/opensearch-dashboards/**/mds*.js' | ||
|
||
jobs: | ||
tests-with-multiple-data-source-and-disabled-local-cluster: | ||
uses: ./.github/workflows/release-e2e-workflow-template.yml | ||
with: | ||
test-name: MDS enabled and local cluster disabled | ||
test-command: env CYPRESS_DISABLE_LOCAL_CLUSTER=true CYPRESS_DATASOURCE_MANAGEMENT_ENABLED=true yarn cypress:run-with-security --browser chromium --spec 'cypress/integration/core-opensearch-dashboards/opensearch-dashboards/**/mds*.js' | ||
osd-serve-args: --data_source.enabled=true --data_source.ssl.verificationMode=none --data_source.hideLocalCluster=true | ||
security-enabled: true |
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
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
Oops, something went wrong.