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

Commit 43d36d7

Browse files
committed
Reinstall gcc on macos
1 parent 2e7dbef commit 43d36d7

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

.github/workflows/cd.yml

+3
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,9 @@ jobs:
2828
shell: bash
2929
run: |
3030
source ./.github/workflows/install-conda.sh
31+
if [[ `uname` == "Darwin" ]]; then
32+
brew reinstall gcc
33+
fi
3134
3235
- name: Deploy packages
3336
if: startsWith(github.ref, 'refs/tags/') && matrix.no-deploy != '1'

.github/workflows/ci.yml

+3
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,9 @@ jobs:
2828
shell: bash
2929
run: |
3030
source ./.github/workflows/reload-env.sh
31+
if [[ `uname` == "Darwin" ]]; then
32+
brew reinstall gcc
33+
fi
3134
python setup.py build_ext -i
3235
3336
- name: Test with unittest

0 commit comments

Comments
 (0)