Skip to content

Commit bc935d0

Browse files
authored
Removing OpenDistro integration tests (#95)
Signed-off-by: Vacha Shah <[email protected]>
1 parent c90719e commit bc935d0

File tree

4 files changed

+1
-76
lines changed

4 files changed

+1
-76
lines changed

.ci/opendistro/Dockerfile.opendistro

-7
This file was deleted.

.ci/opendistro/docker-compose.yml

-17
This file was deleted.

.github/workflows/main.yml

-36
Original file line numberDiff line numberDiff line change
@@ -120,39 +120,3 @@ jobs:
120120
rake bundle:install
121121
- name: opensearch
122122
run: cd opensearch && bundle exec rake test_security:all
123-
124-
test-opendistro:
125-
name: test-opendistro
126-
runs-on: ubuntu-latest
127-
strategy:
128-
matrix:
129-
ruby: [ 2.5, 2.6, 2.7, '3.0', 3.1, jruby-9.3 ]
130-
steps:
131-
- uses: actions/checkout@v2
132-
- name: Increase system limits
133-
run: |
134-
sudo swapoff -a
135-
sudo sysctl -w vm.swappiness=1
136-
sudo sysctl -w fs.file-max=262144
137-
sudo sysctl -w vm.max_map_count=262144
138-
- name: Launch Opendistro cluster
139-
run: |
140-
make cluster.clean cluster.opendistro.build cluster.opendistro.start
141-
- uses: ruby/setup-ruby@v1
142-
with:
143-
ruby-version: ${{ matrix.ruby }}
144-
- name: Build and test with Rake
145-
run: |
146-
sudo apt-get update
147-
sudo apt-get install libcurl4-openssl-dev
148-
ruby -v
149-
rake bundle:clean
150-
rake bundle:install
151-
- name: opensearch-ruby
152-
run: cd opensearch && bundle exec rake test:all
153-
- name: opensearch-transport
154-
run: cd opensearch-transport && bundle exec rake test:all
155-
- name: opensearch-api
156-
run: cd opensearch-api && bundle exec rake test:spec
157-
- name: opensearch-dsl
158-
run: cd opensearch-dsl && bundle exec rake test:all

Makefile

+1-16
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,5 @@
11
SHELL := /bin/bash
22

3-
cluster.opendistro.build:
4-
docker-compose --project-directory .ci/opendistro build;
5-
6-
cluster.opendistro.start:
7-
docker-compose --project-directory .ci/opendistro up -d ;
8-
sleep 20;
9-
10-
cluster.opendistro.stop:
11-
docker-compose --project-directory .ci/opendistro down ;
12-
133
cluster.clean: ## Remove unused Docker volumes and networks
144
@printf "\033[2m→ Cleaning up Docker assets...\033[0m\n"
155
docker volume prune --force
@@ -29,11 +19,6 @@ workflow: ## Run all github workflow commands here sequentially
2919
make test-unit race=true
3020
# Benchmarks Test
3121
make test-bench
32-
# Integration Test
33-
### OpenDistro
34-
make cluster.clean cluster.opendistro.build cluster.opendistro.start
35-
make test-integ race=true
36-
make cluster.opendistro.stop
3722

3823
##@ Other
3924
#------------------------------------------------------------------------------
@@ -42,4 +27,4 @@ help: ## Display help
4227
#------------- <https://suva.sh/posts/well-documented-makefiles> --------------
4328

4429
.DEFAULT_GOAL := help
45-
.PHONY: help backport cluster cluster.opendistro.build cluster.opendistro.start cluster.opendistro.stop cluster.clean coverage godoc lint release test test-bench test-integ test-unit
30+
.PHONY: help backport cluster cluster.clean coverage godoc lint release test test-bench test-integ test-unit

0 commit comments

Comments
 (0)