chore(deps): bump pyjwt from 2.11.0 to 2.12.0 in /packages/uipath #4324
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: uipath - Test LlamaIndex | |
| on: | |
| pull_request: | |
| types: [ opened, synchronize, reopened, labeled ] | |
| jobs: | |
| build-wheels: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| if: contains(github.event.pull_request.labels.*.name, 'test:uipath-llamaindex') | |
| steps: | |
| - name: Checkout uipath-python | |
| uses: actions/checkout@v4 | |
| - name: Setup uv | |
| uses: astral-sh/setup-uv@v5 | |
| - name: Setup Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.12" | |
| - name: Build uipath-core package | |
| working-directory: packages/uipath-core | |
| run: uv build | |
| - name: Build uipath-platform package | |
| working-directory: packages/uipath-platform | |
| run: uv build | |
| - name: Build uipath package | |
| working-directory: packages/uipath | |
| run: uv build | |
| - name: Upload wheels | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: uipath-wheels | |
| path: packages/*/dist/*.whl | |
| test-uipath-llamaindex: | |
| needs: [build-wheels] | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| python-version: [ "3.11", "3.12", "3.13" ] | |
| os: [ ubuntu-latest, windows-latest ] | |
| permissions: | |
| contents: read | |
| steps: | |
| - name: Setup uv | |
| uses: astral-sh/setup-uv@v5 | |
| - name: Setup Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Download wheels | |
| uses: actions/download-artifact@v4 | |
| with: | |
| name: uipath-wheels | |
| path: wheels | |
| - name: Checkout uipath-integrations-python | |
| uses: actions/checkout@v4 | |
| with: | |
| repository: 'UiPath/uipath-integrations-python' | |
| path: 'uipath-integrations-python' | |
| - name: Update uipath packages | |
| shell: bash | |
| working-directory: uipath-integrations-python/packages/uipath-llamaindex | |
| run: | | |
| uv add ../../../wheels/uipath-core/dist/*.whl --dev | |
| uv add ../../../wheels/uipath-platform/dist/*.whl --dev | |
| uv add ../../../wheels/uipath/dist/*.whl --dev | |
| - name: Run uipath-llamaindex tests | |
| working-directory: uipath-integrations-python/packages/uipath-llamaindex | |
| run: | | |
| uv sync | |
| uv run pytest | |
| discover-testcases: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| needs: [test-uipath-llamaindex] | |
| outputs: | |
| testcases: ${{ steps.discover.outputs.testcases }} | |
| steps: | |
| - name: Checkout uipath-integrations-python | |
| uses: actions/checkout@v4 | |
| with: | |
| repository: 'UiPath/uipath-integrations-python' | |
| path: 'uipath-integrations-python' | |
| - name: Discover testcases | |
| id: discover | |
| working-directory: uipath-integrations-python/packages/uipath-llamaindex | |
| run: | | |
| # Find all testcase folders (excluding common folders like README, etc.) | |
| testcase_dirs=$(find testcases -maxdepth 1 -type d -name "*-*" | sed 's|testcases/||' | sort) | |
| echo "Found testcase directories:" | |
| echo "$testcase_dirs" | |
| # Convert to JSON array for matrix | |
| testcases_json=$(echo "$testcase_dirs" | jq -R -s -c 'split("\n")[:-1]') | |
| echo "testcases=$testcases_json" >> $GITHUB_OUTPUT | |
| run-uipath-llamaindex-integration-tests: | |
| runs-on: ubuntu-latest | |
| needs: [build-wheels, discover-testcases] | |
| container: | |
| image: ghcr.io/astral-sh/uv:python3.12-bookworm | |
| env: | |
| UIPATH_JOB_KEY: "3a03d5cb-fa21-4021-894d-a8e2eda0afe0" | |
| UIPATH_TRACING_ENABLED: false | |
| permissions: | |
| contents: read | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| testcase: ${{ fromJson(needs.discover-testcases.outputs.testcases) }} | |
| environment: [alpha, staging] # temporary disable [cloud] | |
| name: "${{ matrix.testcase }} / ${{ matrix.environment }}" | |
| steps: | |
| - name: Download wheels | |
| uses: actions/download-artifact@v4 | |
| with: | |
| name: uipath-wheels | |
| path: wheels | |
| - name: Checkout uipath-integrations-python | |
| uses: actions/checkout@v4 | |
| with: | |
| repository: 'UiPath/uipath-integrations-python' | |
| path: 'uipath-integrations-python' | |
| - name: Update uipath packages | |
| shell: bash | |
| working-directory: uipath-integrations-python/packages/uipath-llamaindex | |
| run: | | |
| uv add ../../../wheels/uipath-core/dist/*.whl | |
| uv add ../../../wheels/uipath-platform/dist/*.whl | |
| uv add ../../../wheels/uipath/dist/*.whl | |
| - name: Install dependencies | |
| working-directory: uipath-integrations-python/packages/uipath-llamaindex | |
| run: uv sync | |
| - name: Run testcase | |
| env: | |
| CLIENT_ID: ${{ matrix.environment == 'alpha' && secrets.ALPHA_TEST_CLIENT_ID || matrix.environment == 'staging' && secrets.STAGING_TEST_CLIENT_ID || matrix.environment == 'cloud' && secrets.CLOUD_TEST_CLIENT_ID }} | |
| CLIENT_SECRET: ${{ matrix.environment == 'alpha' && secrets.ALPHA_TEST_CLIENT_SECRET || matrix.environment == 'staging' && secrets.STAGING_TEST_CLIENT_SECRET || matrix.environment == 'cloud' && secrets.CLOUD_TEST_CLIENT_SECRET }} | |
| BASE_URL: ${{ matrix.environment == 'alpha' && secrets.ALPHA_BASE_URL || matrix.environment == 'staging' && secrets.STAGING_BASE_URL || matrix.environment == 'cloud' && secrets.CLOUD_BASE_URL }} | |
| UV_PYTHON: "3.12" | |
| working-directory: uipath-integrations-python/packages/uipath-llamaindex/testcases/${{ matrix.testcase }} | |
| run: | | |
| echo "Running testcase: ${{ matrix.testcase }}" | |
| echo "Environment: ${{ matrix.environment }}" | |
| # Execute the testcase run script directly | |
| bash run.sh | |
| bash ../common/validate_output.sh |