Skip to content

Commit b9ef841

Browse files
authored
[BACKPORT MAIN] remove front end workflow and code (opensearch-project#1362) (opensearch-project#1386)
* remove front end workflow and code (opensearch-project#1362) * remove front end workflow and code Signed-off-by: Derek Ho <[email protected]> * move folders up one level Signed-off-by: Derek Ho <[email protected]> * fix workflow file Signed-off-by: Derek Ho <[email protected]> * final workflow fix Signed-off-by: Derek Ho <[email protected]> Signed-off-by: Derek Ho <[email protected]> (cherry picked from commit e7dea87) Signed-off-by: Derek Ho <[email protected]> * delete front end workflow file Signed-off-by: Derek Ho <[email protected]> * ichange bwc version Signed-off-by: Derek Ho <[email protected]> * fix build.gradel Signed-off-by: Derek Ho <[email protected]> * try to replace all references Signed-off-by: Derek Ho <[email protected]> * fix job scheduler version Signed-off-by: Derek Ho <[email protected]> * add job scheduler into bwc tests Signed-off-by: Derek Ho <[email protected]> * change version to 2.4.0 Signed-off-by: Derek Ho <[email protected]> * run all jobs Signed-off-by: Derek Ho <[email protected]> * add back bwc Signed-off-by: Derek Ho <[email protected]> * add job scheduler back Signed-off-by: Derek Ho <[email protected]> * fix Signed-off-by: Derek Ho <[email protected]> * fix the file Signed-off-by: Derek Ho <[email protected]> Signed-off-by: Derek Ho <[email protected]>
1 parent 295af54 commit b9ef841

File tree

754 files changed

+30
-171478
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

754 files changed

+30
-171478
lines changed
File renamed without changes.
File renamed without changes.

.github/workflows/dashboards-observability-test-and-build-workflow.yml

-84
This file was deleted.

.github/workflows/opensearch-observability-test-and-build-workflow.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ jobs:
77
env:
88
BUILD_ARGS: ${{ matrix.os_build_args }}
99
strategy:
10+
# Run all jobs
11+
fail-fast: false
1012
matrix:
1113
java: [11, 17]
1214
os: [ubuntu-latest, windows-latest, macos-latest]
@@ -29,13 +31,11 @@ jobs:
2931
# Temporarily only do this for linux
3032
if: ${{ matrix.os == 'ubuntu-latest' }}
3133
run: |
32-
cd opensearch-observability
3334
echo "Running backwards compatibility tests ..."
3435
./gradlew bwcTestSuite -Dtests.security.manager=false
3536
3637
- name: Build with Gradle
3738
run: |
38-
cd opensearch-observability
3939
./gradlew build ${{ env.BUILD_ARGS }}
4040
4141
- name: Upload coverage
@@ -49,7 +49,7 @@ jobs:
4949
- name: Create Artifact Path
5050
run: |
5151
mkdir -p opensearch-observability-builds
52-
cp -r ./opensearch-observability/build/distributions/*.zip opensearch-observability-builds/
52+
cp -r ./build/distributions/*.zip opensearch-observability-builds/
5353
5454
- name: Upload Artifacts
5555
uses: actions/upload-artifact@v1
File renamed without changes.

opensearch-observability/build.gradle build.gradle

+27-4
Original file line numberDiff line numberDiff line change
@@ -317,17 +317,40 @@ testClusters.integTest {
317317
setting 'path.repo', repo.absolutePath
318318
}
319319

320-
String bwcVersion = "2.4.0-SNAPSHOT"
320+
String baseVersion = "2.5.0"
321+
String bwcVersion = baseVersion + ".0"
321322
String baseName = "obsBwcCluster"
322323
String bwcFilePath = "src/test/resources/bwc/"
323-
String remoteFileURL = "https://ci.opensearch.org/ci/dbc/distribution-build-opensearch/2.4.0/latest/linux/x64/tar/builds/opensearch/plugins/opensearch-observability-2.4.0.0.zip"
324+
String bwcObservabilityPlugin = "opensearch-observability-" + bwcVersion + ".zip"
325+
String bwcJobSchedulerPlugin = "opensearch-job-scheduler-" + bwcVersion + ".zip"
326+
String remoteFileURL = "https://ci.opensearch.org/ci/dbc/distribution-build-opensearch/${baseVersion}/latest/linux/x64/tar/builds/opensearch/plugins/" + bwcObservabilityPlugin
327+
String bwcJobSchedulerURL = "https://ci.opensearch.org/ci/dbc/distribution-build-opensearch/${baseVersion}/latest/linux/x64/tar/builds/opensearch/plugins/" + bwcJobSchedulerPlugin
324328

325329
2.times {i ->
326330
testClusters {
327331
"${baseName}$i" {
328332
testDistribution = "ARCHIVE"
329-
versions = ["2.4.0",opensearch_version]
333+
versions = [baseVersion,opensearch_version]
330334
numberOfNodes = 3
335+
plugin(provider(new Callable<RegularFile>(){
336+
@Override
337+
RegularFile call() throws Exception {
338+
return new RegularFile() {
339+
@Override
340+
File getAsFile() {
341+
File dir = new File(bwcFilePath + "/job-scheduler/" + bwcVersion)
342+
if (!dir.exists()) {
343+
dir.mkdirs()
344+
}
345+
File file = new File(dir, bwcJobSchedulerPlugin)
346+
if (!file.exists()) {
347+
new URL(bwcJobSchedulerURL).withInputStream{ ins -> file.withOutputStream{ it << ins }}
348+
}
349+
return fileTree(bwcFilePath + "/job-scheduler/" + bwcVersion).getSingleFile()
350+
}
351+
}
352+
}
353+
}))
331354
plugin(provider(new Callable<RegularFile>(){
332355
@Override
333356
RegularFile call() throws Exception {
@@ -338,7 +361,7 @@ String remoteFileURL = "https://ci.opensearch.org/ci/dbc/distribution-build-open
338361
if (!dir.exists()) {
339362
dir.mkdirs()
340363
}
341-
File file = new File(dir, "opensearch-observability-2.4.0.0-SNAPSHOT.zip")
364+
File file = new File(dir, bwcObservabilityPlugin)
342365
if (!file.exists()) {
343366
new URL(remoteFileURL).withInputStream{ ins -> file.withOutputStream{ it << ins }}
344367
}

dashboards-observability/.babelrc

-18
This file was deleted.

dashboards-observability/.cypress/CYPRESS_TESTS.md

-146
This file was deleted.

0 commit comments

Comments
 (0)