Skip to content
This repository has been archived by the owner on Jan 5, 2024. It is now read-only.

Commit

Permalink
Reinstall gcc on macos
Browse files Browse the repository at this point in the history
  • Loading branch information
wjsi committed Sep 15, 2023
1 parent 2e7dbef commit 8dc36ae
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@ jobs:
shell: bash
run: |
source ./.github/workflows/install-conda.sh
if [[ `uname` == "Darwin" ]]; then
brew reinstall gcc@10
fi
- name: Deploy packages
if: startsWith(github.ref, 'refs/tags/') && matrix.no-deploy != '1'
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ jobs:
shell: bash
run: |
source ./.github/workflows/install-conda.sh
if [[ `uname` == "Darwin" ]]; then
brew reinstall gcc@10
fi
- name: Build extensions
shell: bash
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
],
libraries=["rt"] if sys.platform == 'linux' else [],
sources=["shared_memory/posixshmem.c"],
extra_compile_args=["-Wno-implicit-function-declaration"],
)
win_shm_mod = Extension(
"shared_memory._winshmem",
Expand Down

0 comments on commit 8dc36ae

Please sign in to comment.