Skip to content

Commit

Permalink
Make: Override CC in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
ashvardanian committed Sep 19, 2024
1 parent e0f4cc3 commit 1384eaa
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/prerelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -187,6 +187,9 @@ jobs:
pip install pytest pytest-repeat numpy numba cppyy
pip install --upgrade git+https://github.com/Maratyszcza/PeachPy
python -m pip install .
env:
CXX: clang++
CC: clang++ # Override the default compiler
- name: Test Python
run: pytest

Expand Down Expand Up @@ -245,6 +248,9 @@ jobs:
python -m pip install --upgrade pip
pip install pytest pytest-repeat numpy
python -m pip install .
env:
CXX: clang++
CC: clang++ # Override the default compiler
- name: Test Python
run: pytest

Expand Down

0 comments on commit 1384eaa

Please sign in to comment.