Bump version from 0.26.1-beta.1726 to 0.26.0 #3407
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: Regression Suite (ARM) | |
| on: | |
| push: | |
| branches-ignore: | |
| - main # Exclude the main branch | |
| - 'refs/tags/*' # Exclude tags (releases) | |
| jobs: | |
| regression_matrix: | |
| strategy: | |
| max-parallel: 4 | |
| fail-fast: false | |
| matrix: | |
| python-version: ["3.11", "3.12", "3.13"] | |
| os: [ubuntu-24.04-arm] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Set up Python ${{ matrix.python-version }} | |
| if: matrix.os == 'ubuntu-24.04-arm' | |
| uses: buildjet/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| cache: pip | |
| - name: Install Rust | |
| uses: actions-rs/toolchain@v1 | |
| with: | |
| toolchain: stable | |
| override: true | |
| - name: Install Requirements | |
| run: | | |
| python -m pip install --upgrade pip uv | |
| python -m uv pip install --upgrade numpy cython==3.1.3 | |
| python -m uv pip install --upgrade -r $GITHUB_WORKSPACE/tests/requirements.txt | |
| python -m uv pip install --upgrade -r $GITHUB_WORKSPACE/pyproject.toml | |
| python setup.py build_ext --inplace -j 4 | |
| - name: "Authenticate to Google Cloud" | |
| uses: google-github-actions/auth@v1 | |
| with: | |
| credentials_json: '${{ secrets.GCP_KEY }}' | |
| - name: Run Regression Tests | |
| run: python -m pytest -n auto --color=yes | |
| env: | |
| GCP_PROJECT_ID: mabeldev | |
| MYSQL_USER: '${{ secrets.MYSQL_USER }}' | |
| MYSQL_PASSWORD: '${{ secrets.MYSQL_PASSWORD }}' | |
| POSTGRES_USER: '${{ secrets.POSTGRES_USER }}' | |
| POSTGRES_PASSWORD: '${{ secrets.POSTGRES_PASSWORD }}' | |
| MEMCACHED_SERVER: 'localhost:11211' | |
| DATA_CATALOG_PROVIDER: 'ICEBERG' | |
| DATA_CATALOG_CONFIGURATION: '${{ secrets.DATA_CATALOG_CONFIGURATION }}' | |
| EXPERIMENTAL_EXECUTION_ENGINE: 'true' | |
| RESOURCES_PATH: 'testdata' |