Replaced uses of SecurityRoles by Set<String> mappedRoles where the SecurityRoles functionality is not needed #8080
Workflow file for this run
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: Plugin Install | |
on: [push, pull_request, workflow_dispatch] | |
env: | |
OPENSEARCH_VERSION: 3.0.0 | |
PLUGIN_NAME: opensearch-security | |
jobs: | |
plugin-install: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, windows-latest] | |
jdk: [11, 17, 21] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- id: random-password | |
uses: peternied/random-name@v1 | |
- name: Set up JDK | |
uses: actions/setup-java@v4 | |
with: | |
distribution: temurin # Temurin is a distribution of adoptium | |
java-version: ${{ matrix.jdk }} | |
- name: Checkout Branch | |
uses: actions/checkout@v4 | |
- name: Assemble target plugin | |
uses: gradle/gradle-build-action@v3 | |
with: | |
cache-disabled: true | |
arguments: assemble | |
# Move and rename the plugin for installation | |
- name: Move and rename the plugin for installation | |
run: mv ./build/distributions/${{ env.PLUGIN_NAME }}-*.zip ${{ env.PLUGIN_NAME }}.zip | |
shell: bash | |
- name: Run Opensearch with A Single Plugin | |
uses: derek-ho/start-opensearch@v4 | |
with: | |
opensearch-version: ${{ env.OPENSEARCH_VERSION }} | |
plugins: "file:$(pwd)/${{ env.PLUGIN_NAME }}.zip" | |
security-enabled: true | |
admin-password: ${{ steps.random-password.outputs.generated_name }} | |
- name: Run sanity tests | |
uses: gradle/gradle-build-action@v3 | |
with: | |
cache-disabled: true | |
arguments: integTestRemote -Dtests.rest.cluster=localhost:9200 -Dtests.cluster=localhost:9200 -Dtests.clustername="opensearch" -Dhttps=true -Duser=admin -Dpassword=${{ steps.random-password.outputs.generated_name }} -i |