fix(catalog): keep check-sources from creating a database file #4020
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: ci-test-ibis-compatibility | |
| on: | |
| push: | |
| branches: | |
| - main | |
| tags: | |
| - '*' | |
| pull_request: | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| jobs: | |
| changes: | |
| uses: ./.github/workflows/detect-changes.yml | |
| permissions: | |
| contents: read | |
| pull-requests: read | |
| linux: | |
| needs: changes | |
| if: needs.changes.outputs.code == 'true' | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| target: [ x86_64 ] | |
| python-version: [ "3.12" ] | |
| dependencies: | |
| - name: 1000 | |
| ibis-version: "10.0.0" | |
| duckdb-version: "1.1.3" | |
| - name: 1080 | |
| ibis-version: "10.8.0" | |
| duckdb-version: "1.3.*" | |
| - name: 1100 | |
| ibis-version: "11.0.0" | |
| duckdb-version: "1.4.2" | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: extractions/setup-just@v4 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| - name: download test data | |
| run: just download-data | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v7 | |
| with: | |
| enable-cache: true | |
| - name: create build virtual environment | |
| run: uv venv .venv | |
| - name: build package | |
| run: uv build | |
| - name: get wheel filename | |
| run: echo "WHEEL_FILE=$(ls dist/*.whl)" >> $GITHUB_ENV | |
| - name: start services | |
| run: docker compose up --build --wait | |
| - name: test from_ibis compatibility with ibis ${{ matrix.dependencies.ibis-version }} | |
| run: | | |
| uv run --isolated --no-project -p ${{ matrix.python-version }} --with "${{ env.WHEEL_FILE }}[postgres]" --with "ibis-framework[postgres]==${{ matrix.dependencies.ibis-version }}" --with pytest -- python -c "import xorq; import ibis; print(f'xorq version: {xorq.__version__}, ibis version: {ibis.__version__}')" | |
| uv run --isolated --no-project -p ${{ matrix.python-version }} --with "${{ env.WHEEL_FILE }}[postgres]" --with "ibis-framework[postgres]==${{ matrix.dependencies.ibis-version }}" --with pytest --with "datafusion<52.0.0" --with "duckdb==${{ matrix.dependencies.duckdb-version }}" -- pytest --import-mode=importlib python/xorq/common/utils/tests/ibis_utils/ -v | |
| working-directory: ${{ github.workspace }} | |
| env: | |
| POSTGRES_PASSWORD: postgres | |
| POSTGRES_USER: postgres | |
| POSTGRES_HOST: localhost | |
| POSTGRES_PORT: 5432 | |
| POSTGRES_DATABASE: ibis_testing |