Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
mbahng committed Jan 1, 2025
1 parent 249ddb2 commit f6836b2
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/build_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Set up Conda and Python
- name: Set up Conda
uses: conda-incubator/setup-miniconda@v3
with:
python-version: ${{ matrix.python }}
Expand All @@ -24,19 +24,21 @@ jobs:
auto-activate-base: false

- name: Install dependencies
shell: bash -l {0} # Important: this makes conda activate work
shell: bash -l {0}
run: |
conda install pybind11 pip
conda install pybind11 cmake pip
pip install cibuildwheel
- name: Build wheels
shell: bash -l {0}
run: |
run: |
python -m cibuildwheel
env:
CIBW_BUILD_VERBOSITY: 1
CIBW_SKIP: "*-win32 *-manylinux_i686"
CIBW_ENVIRONMENT: PATH="$CONDA/bin:$PATH"
# Remove the PATH modification from CIBW_ENVIRONMENT
CIBW_ENVIRONMENT: >
CMAKE_ARGS="-DCMAKE_PREFIX_PATH=$CONDA_PREFIX"
- name: Store the wheels
uses: actions/upload-artifact@v4
Expand Down

0 comments on commit f6836b2

Please sign in to comment.