diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9693cd5..d0e7467 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,7 +10,7 @@ jobs: image: node:18 strategy: matrix: - searchdb-host: [elastic7, elastic8, opensearch1] + searchdb-host: [elastic7, elastic8, opensearch1, opensearch2] fail-fast: false services: @@ -35,6 +35,16 @@ jobs: env: discovery.type: single-node plugins.security.disabled: true + OPENSEARCH_JAVA_OPTS: -Xms512m -Xmx512m + DISABLE_INSTALL_DEMO_CONFIG: true + opensearch2: + image: opensearchproject/opensearch:2.13.0 + env: + discovery.type: single-node + plugins.security.disabled: true + OPENSEARCH_JAVA_OPTS: -Xms512m -Xmx512m + DISABLE_INSTALL_DEMO_CONFIG: true + OPENSEARCH_INITIAL_ADMIN_PASSWORD: temba steps: - name: Checkout code