Skip to content

Commit 4168d9c

Browse files
authored
Fix cypress workflow (#8)
* Upload new release notes Signed-off-by: Ashish Agrawal <[email protected]>
1 parent 3b35c40 commit 4168d9c

File tree

3 files changed

+59
-3
lines changed

3 files changed

+59
-3
lines changed

.github/workflows/cypress-workflow.yml

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,44 @@ jobs:
2222
with:
2323
# TODO: Parse this from index management plugin
2424
java-version: 14
25+
# dependencies: OpenSearch
26+
- name: Checkout OpenSearch
27+
uses: actions/checkout@v2
28+
with:
29+
repository: 'opensearch-project/OpenSearch'
30+
path: OpenSearch
31+
ref: '1.0.0-alpha2'
32+
- name: Build OpenSearch
33+
working-directory: ./OpenSearch
34+
run: ./gradlew publishToMavenLocal -Dbuild.version_qualifier=alpha2 -Dbuild.snapshot=false
35+
# dependencies: common-utils
36+
- name: Checkout common-utils
37+
uses: actions/checkout@v2
38+
with:
39+
repository: 'opensearch-project/common-utils'
40+
path: common-utils
41+
- name: Build common-utils
42+
working-directory: ./common-utils
43+
run: ./gradlew publishToMavenLocal -Dopensearch.version=1.0.0-alpha2
44+
# dependencies: job-scheduler
45+
- name: Checkout job-scheduler
46+
uses: actions/checkout@v2
47+
with:
48+
repository: 'opensearch-project/job-scheduler'
49+
path: job-scheduler
50+
- name: Build job-scheduler
51+
working-directory: ./job-scheduler
52+
run: ./gradlew publishToMavenLocal -Dopensearch.version=1.0.0-alpha2 -Dbuild.snapshot=false
53+
# dependencies: alerting-notification
54+
- name: Checkout alerting
55+
uses: actions/checkout@v2
56+
with:
57+
repository: 'opensearch-project/alerting'
58+
ref: 'beta'
59+
path: alerting
60+
- name: Build alerting
61+
working-directory: ./alerting
62+
run: ./gradlew :alerting-notification:publishToMavenLocal -Dopensearch_version=1.0.0-alpha2
2563
- name: Checkout
2664
uses: actions/checkout@v2
2765
with:

release-notes/create-release-notes.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@
1616
plugin_version = raw_input('Plugin version (x.x.x.x): ')
1717

1818
app_num = int(
19-
raw_input('Elasticsearch plugin (enter 1) or Kibana plugin (enter 2)? '))
20-
app = 'Elasticsearch'
19+
raw_input('Opensearch plugin (enter 1) or Kibana plugin (enter 2)? '))
20+
app = 'Opensearch'
2121
if app_num is 2:
22-
app = 'Kibana'
22+
app = 'OpenSearch-Dashboards'
2323

2424
app_version = raw_input(app + ' compatibility version (x.x.x): ')
2525

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
## Version 1.0.0.0-beta1 2021-04-26
2+
3+
Compatible with OpenSearch-Dashboards 1.0.0
4+
5+
### Infrastructure
6+
7+
* Updates versions and fixes the unit test workflow ([#7](https://github.com/opensearch-project/index-management-dashboards-plugin/pull/7))
8+
* Fix cypress workflow ([#8](https://github.com/opensearch-project/index-management-dashboards-plugin/pull/8))
9+
10+
### Documentation
11+
12+
* Adds new license header ([#6](https://github.com/opensearch-project/index-management-dashboards-plugin/pull/6))
13+
14+
### Refactoring
15+
16+
* Migrates plugin to OpenSearch Dashboards ([#1](https://github.com/opensearch-project/index-management-dashboards-plugin/pull/1))
17+
* Cleans up a few more references ([#5](https://github.com/opensearch-project/index-management-dashboards-plugin/pull/5))
18+

0 commit comments

Comments
 (0)