Skip to content

Commit 2f07047

Browse files
committed
back to clang on macos
1 parent 859ede6 commit 2f07047

1 file changed

Lines changed: 1 addition & 12 deletions

File tree

.github/workflows/ci-mac.yml

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -67,12 +67,6 @@ jobs:
6767
- uses: actions/setup-python@v5
6868
with:
6969
python-version: '3.13'
70-
71-
# - name: Install LLVM and Clang
72-
# uses: KyleMayes/install-llvm-action@v2
73-
# with:
74-
# version: "18.1"
75-
# env: true
7670

7771
- name: checkout main repository
7872
uses: actions/checkout@v4
@@ -85,17 +79,12 @@ jobs:
8579
with:
8680
key: super-ci-mac-2 # name for the cache
8781

88-
- run: brew install libomp boost coreutils gcc
82+
- run: brew install libomp boost coreutils
8983

9084
- run: pip install meson meson-python ninja pytest numpy
9185

9286
- name: configure meson
9387
run: |
94-
GCC_VER=$(brew info --json gcc | python3 -c "import json,sys; print(json.load(sys.stdin)[0]['versions']['stable'].split('.')[0])")
95-
export CC="$(brew --prefix gcc)/bin/gcc-$GCC_VER"
96-
export CXX="$(brew --prefix gcc)/bin/g++-$GCC_VER"
97-
export BOOST_ROOT="$(brew --prefix boost)"
98-
export PKG_CONFIG_PATH="$(brew --prefix boost)/lib/pkgconfig:${PKG_CONFIG_PATH:-}"
9988
meson setup builddir -Dpython.install_env=auto
10089
10190
- name: compile project

0 commit comments

Comments
 (0)