[AUTO] Update input manifests #4976
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: manifests | |
on: | |
pull_request: | |
paths: | |
- 'manifests/**/*.yml' | |
- '!manifests/templates/**/' | |
jobs: | |
list-changed-manifests: | |
runs-on: ubuntu-latest | |
outputs: | |
matrix: ${{ steps.set-matrix.outputs.matrix }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Get changed manifest files | |
uses: tj-actions/changed-files@v39 | |
id: list-changed-manifests | |
with: | |
files: manifests/**/opensearch*.yml | |
json: true | |
quotepath: false | |
dir_names: false | |
- name: Set unique changed manifests as matrix | |
id: set-matrix | |
run: echo "matrix={\"manifest\":${{ steps.list-changed-manifests.outputs.all_changed_files }}}" >> "$GITHUB_OUTPUT" | |
manifest-checks-jdk11: | |
needs: [list-changed-manifests] | |
runs-on: ubuntu-latest | |
env: | |
PYTHON_VERSION: 3.9 | |
JDK_VERSION: 11 | |
strategy: | |
matrix: ${{ fromJson(needs.list-changed-manifests.outputs.matrix) }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set Up JDK ${{ env.JDK_VERSION }} | |
uses: actions/setup-java@v1 | |
with: | |
java-version: ${{ env.JDK_VERSION }} | |
- name: Set up Python ${{ env.PYTHON_VERSION }} | |
uses: actions/setup-python@v3 | |
with: | |
python-version: ${{ env.PYTHON_VERSION }} | |
- name: Install Pipenv and Dependencies | |
run: | | |
python -m pip install --upgrade pipenv wheel | |
- name: OpenSearch Manifests | |
run: |- | |
./ci.sh ${{ matrix.manifest }} --snapshot | |
manifest-checks-jdk17: | |
needs: [list-changed-manifests] | |
runs-on: ubuntu-latest | |
env: | |
PYTHON_VERSION: 3.9 | |
JDK_VERSION: 17 | |
strategy: | |
matrix: ${{ fromJson(needs.list-changed-manifests.outputs.matrix) }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set Up JDK ${{ env.JDK_VERSION }} | |
uses: actions/setup-java@v1 | |
with: | |
java-version: ${{ env.JDK_VERSION }} | |
- name: Set up Python ${{ env.PYTHON_VERSION }} | |
uses: actions/setup-python@v3 | |
with: | |
python-version: ${{ env.PYTHON_VERSION }} | |
- name: Install Pipenv and Dependencies | |
run: | | |
python -m pip install --upgrade pipenv wheel | |
- name: OpenSearch Manifests | |
run: |- | |
./ci.sh ${{ matrix.manifest }} --snapshot |