From 8ad9732223c0851671a0912e68ceb6618cb303b5 Mon Sep 17 00:00:00 2001 From: "Uwe L. Korn" Date: Mon, 2 Sep 2024 11:47:00 +0200 Subject: [PATCH] Run python-build without isolation --- .github/workflows/conda.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/conda.yml b/.github/workflows/conda.yml index b138120f..7fe67113 100644 --- a/.github/workflows/conda.yml +++ b/.github/workflows/conda.yml @@ -29,7 +29,7 @@ jobs: with: environments: default - name: Build the sdist - run: pixi run python -m build --sdist + run: pixi run python -m build --sdist --no-isolation - name: Publish package if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags') && github.repository == 'blue-yonder/turbodbc' uses: pypa/gh-action-pypi-publish@v1.9.0 @@ -133,7 +133,7 @@ jobs: with: environments: ${{ matrix.environment }} - name: Build the wheel - run: pixi run -e ${{ matrix.environment }} python -m build + run: pixi run -e ${{ matrix.environment }} python -m build --no-isolation - name: Install the built wheel run: pixi run -e ${{ matrix.environment }} python -m pip install dist/*.whl - name: Import test @@ -179,7 +179,7 @@ jobs: - name: Create inner database run: pixi run -e ${{ matrix.environment }} createdb --owner=runner test_db - name: Build the wheel - run: pixi run -e ${{ matrix.environment }} bash -c 'CXXFLAGS="$CXXFLAGS -ggdb -fno-omit-frame-pointer" python -m build' + run: pixi run -e ${{ matrix.environment }} bash -c 'CXXFLAGS="$CXXFLAGS -ggdb -fno-omit-frame-pointer" python -m build --no-isolation' - name: Install the built wheel run: pixi run -e ${{ matrix.environment }} python -m pip install dist/*.whl - name: Import test @@ -234,7 +234,7 @@ jobs: with: environments: ${{ matrix.environment }} - name: Build wheel - run: pixi run -e ${{ matrix.environment }} python -m build + run: pixi run -e ${{ matrix.environment }} python -m build --no-isolation - name: Install wheel run: pixi run -e ${{ matrix.environment }} python -m pip install 'dist\*.whl' - name: Test