Skip to content

Commit

Permalink
Run python-build without isolation
Browse files Browse the repository at this point in the history
  • Loading branch information
xhochy committed Sep 2, 2024
1 parent 52423c8 commit 8ad9732
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/conda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 8ad9732

Please sign in to comment.