This repository has been archived by the owner on Jan 18, 2024. It is now read-only.
Update README regarding archiving opensearch-dsl-py (#113) #127
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: Integration with Unreleased OpenSearch | |
on: | |
push: | |
pull_request: | |
branches: | |
- "main" | |
jobs: | |
integ-test: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
opensearch_ref: [ '1.x', '2.x', '2.0', 'main' ] | |
python-version: [ '3.8' ] | |
steps: | |
- name: Checkout OpenSearch | |
uses: actions/checkout@v3 | |
with: | |
repository: opensearch-project/opensearch | |
ref: ${{ matrix.opensearch_ref }} | |
path: opensearch | |
- name: Get OpenSearch branch top | |
id: get-key | |
working-directory: opensearch | |
run: echo key=`git log -1 --format='%H'` >> $GITHUB_OUTPUT | |
- name: Restore cached build | |
id: cache-restore | |
uses: actions/cache/restore@v3 | |
with: | |
path: opensearch/distribution/archives/linux-tar/build/distributions | |
key: ${{ steps.get-key.outputs.key }} | |
- name: Assemble OpenSearch | |
if: steps.cache-restore.outputs.cache-hit != 'true' | |
working-directory: opensearch | |
run: ./gradlew :distribution:archives:linux-tar:assemble | |
- name: Save cached build | |
if: steps.cache-restore.outputs.cache-hit != 'true' | |
uses: actions/cache/save@v3 | |
with: | |
path: opensearch/distribution/archives/linux-tar/build/distributions | |
key: ${{ steps.get-key.outputs.key }} | |
- name: Run OpenSearch | |
working-directory: opensearch/distribution/archives/linux-tar/build/distributions | |
run: | | |
tar xf opensearch-min-* | |
./opensearch-*/bin/opensearch & | |
for attempt in {1..20}; do sleep 5; if curl -s localhost:9200; then echo '=====> ready'; break; fi; echo '=====> waiting...'; done | |
- name: Checkout High Level Python Client | |
uses: actions/checkout@v3 | |
with: | |
path: dsl-py | |
- name: Setup Python - ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
env: | |
PIP_NO_PYTHON_VERSION_WARNING: 1 | |
- name: Install nox | |
run: | | |
python -m pip install nox | |
- name: Run integration tests | |
working-directory: dsl-py | |
run: | | |
nox --no-error-on-missing-interpreter -rs test | |
- name: Save server logs | |
if: failure() | |
uses: actions/upload-artifact@v3 | |
with: | |
name: opensearch-logs-${{ matrix.opensearch_ref }}-python-${{ matrix.python-version }} | |
path: | | |
opensearch/distribution/archives/linux-tar/build/distributions/**/logs/* |