Update rubygems public key until 20250726 (#57) #59
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
name: Build and Test logstash-input-opensearch plugin | |
on: | |
push: | |
branches: | |
- "*" | |
pull_request: | |
branches: | |
- "*" | |
jobs: | |
Unit-test: | |
strategy: | |
matrix: | |
logstash: [ "7.16.3" ] | |
name: Unit Test logstash-input-opensearch | |
runs-on: ubuntu-latest | |
env: | |
LOGSTASH_VERSION: ${{ matrix.logstash }} | |
steps: | |
- name: Checkout plugin | |
uses: actions/checkout@v1 | |
- name: Build and pull docker files for unit tests with logstash ${{ matrix.logstash }} | |
run: | | |
./.ci/unit-test/docker-setup.sh | |
- name: Run unit tests | |
run: | | |
./.ci/unit-test/docker-run.sh | |
Integration-Test-OpenSearch: | |
strategy: | |
matrix: | |
logstash: [ "7.16.3" ] | |
opensearch: [ "1.2.1" ] | |
integration: [ true ] | |
secure: [ true, false ] | |
name: Integration Test for logstash-input-opensearch against OpenSearch | |
runs-on: ubuntu-latest | |
env: | |
OPENDISTRO_VERSION: ${{ matrix.opensearch }} | |
LOGSTASH_VERSION: ${{ matrix.logstash }} | |
INTEGRATION: ${{ matrix.integration }} | |
SECURE_INTEGRATION: ${{ matrix.secure }} | |
steps: | |
- name: Checkout plugin | |
uses: actions/checkout@v1 | |
- name: Build and pull docker files for OpenSearch-${{ matrix.opensearch }} with security-${{ matrix.secure }} for logstash-${{ matrix.logstash }} | |
run: | | |
./.ci/opensearch/docker-setup.sh | |
- name: Run integration tests against OpenSearch-${{ matrix.opensearch }} with security-${{ matrix.secure }} for logstash-${{ matrix.logstash }} | |
run: | | |
./.ci/opensearch/docker-run.sh | |
Integration-Test-OpenDistro: | |
strategy: | |
matrix: | |
logstash: [ "7.16.3" ] | |
opendistro: [ "1.13.3" ] | |
integration: [ true ] | |
secure: [ true, false ] | |
name: Integration Test for logstash-input-opensearch against OpenDistro | |
runs-on: ubuntu-latest | |
env: | |
OPENDISTRO_VERSION: ${{ matrix.opendistro }} | |
LOGSTASH_VERSION: ${{ matrix.logstash }} | |
INTEGRATION: ${{ matrix.integration }} | |
SECURE_INTEGRATION: ${{ matrix.secure }} | |
steps: | |
- name: Checkout plugin | |
uses: actions/checkout@v1 | |
- name: Build and pull docker files for OpenDistro-${{ matrix.opendistro }} with security-${{ matrix.secure }} for logstash-${{ matrix.logstash }} | |
run: | | |
./.ci/opendistro/docker-setup.sh | |
- name: Run integration tests against OpenDistro-${{ matrix.opendistro }} with security-${{ matrix.secure }} for logstash-${{ matrix.logstash }} | |
run: | | |
./.ci/opendistro/docker-run.sh |