Skip to content

Commit

Permalink
disable openmp on macos for now
Browse files Browse the repository at this point in the history
  • Loading branch information
nim65s committed Feb 12, 2025
1 parent 6b3456a commit 94aa707
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,18 @@ jobs:
with:
submodules: 'true'
- run: pipx install cibuildwheel
- run: echo "OPENMP=OFF" >> $GITHUB_ENV
if: ${{ startsWith(matrix.os, 'macos') }}
- run: echo "OPENMP=ON" >> $GITHUB_ENV
if: ${{ startsWith(matrix.os, 'ubuntu') }}
- run: cibuildwheel
env:
CIBW_BUILD: "${{ matrix.python }}-*"
CIBW_SKIP: "*-musllinux_aarch64 *i686"
CIBW_MANYLINUX_X86_64_IMAGE: "quay.io/pypa/manylinux_2_28_x86_64"
CIBW_MANYLINUX_AARCH64_IMAGE: "quay.io/pypa/manylinux_2_28_aarch64"
CIBW_REPAIR_WHEEL_COMMAND: ""
CIBW_ENVIRONMENT: CMEEL_LOG_LEVEL="DEBUG" CMEEL_JOBS="1" CMEEL_TEST_JOBS="1" CMEEL_RUN_TESTS="false"
CIBW_ENVIRONMENT: CMEEL_LOG_LEVEL="DEBUG" CMEEL_JOBS="1" CMEEL_TEST_JOBS="1" CMEEL_RUN_TESTS="false" CMEEL_CMAKE_ARGS="-DBUILD_WITH_OPENMP_SUPPORT=$OPENMP"
- uses: actions/upload-artifact@v4
with:
name: "artifact-${{ matrix.os }}-${{ matrix.python }}"
Expand Down
1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ upstream = "https://github.com/stack-of-tasks/pinocchio"
build-number = 1
configure-args = [
"-DBUILD_WITH_COLLISION_SUPPORT=ON",
"-DBUILD_WITH_OPENMP_SUPPORT=ON",
"-DBUILD_WITH_LIBPYTHON=OFF",
"-DSUFFIX_SO_VERSION=OFF"
]
Expand Down

0 comments on commit 94aa707

Please sign in to comment.