Make CLI settings fully dynamic + fix NodeClient typing #110
Workflow file for this run
This file contains hidden or 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: SQL CLI Test and Build | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| push: | |
| branches-ignore: | |
| - 'dependabot/**' | |
| paths: | |
| - '.' | |
| - '.github/workflows/sql-cli-test-and-build-workflow.yml' | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: . | |
| strategy: | |
| matrix: | |
| python-version: [3.12] | |
| # Note: OpenSearch version is determined by the SQL repository clone | |
| steps: | |
| - name: Checkout SQL CLI | |
| uses: actions/checkout@v3 | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Set up Java 21 | |
| uses: actions/setup-java@v3 | |
| with: | |
| java-version: '21' | |
| distribution: 'temurin' | |
| - name: Install Python Dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install -r requirements-dev.txt | |
| pip install setuptools wheel | |
| - name: Run Gradle Build and Tests | |
| run: ./gradlew build | |
| - name: Build Artifact | |
| run: python setup.py sdist bdist_wheel | |
| - name: Create Artifact Path | |
| run: | | |
| mkdir -p opensearchsql-builds | |
| cp -r ./dist/*.tar.gz ./dist/*.whl opensearchsql-builds/ | |
| - name: Upload Artifact | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: opensearchsql | |
| path: opensearchsql-builds | |
| - name: Clean up test cluster | |
| if: always() | |
| run: ./gradlew stopTestCluster |