Skip to content

Commit 71937dd

Browse files
c compiler env vars in workflows
1 parent a4b0d6b commit 71937dd

2 files changed

Lines changed: 6 additions & 0 deletions

File tree

.github/workflows/pull-request.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,9 @@ jobs:
3333
- name: Install webdriver
3434
run: sudo apt-get update && sudo apt-get install chromium-chromedriver
3535
- name: Install dependencies
36+
env:
37+
CC: gcc-14
38+
CXX: g++-14
3639
run: |
3740
python${{ matrix.python-version }} -m pip install --upgrade pip packaging wheel cython setuptools
3841
python${{ matrix.python-version }} -m pip install `grep numpy== requirements/ubuntu-latest_py${{ matrix.python-version }}_extras.txt`

.github/workflows/pytest-docs.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,9 @@ jobs:
3232
- name: Install webdriver
3333
run: sudo apt-get update && sudo apt-get install chromium-chromedriver
3434
- name: Install dependencies
35+
env:
36+
CC: gcc-14
37+
CXX: g++-14
3538
run: |
3639
python${{ matrix.python-version }} -m pip install --upgrade pip packaging wheel cython setuptools
3740
python${{ matrix.python-version }} -m pip install `grep numpy== requirements/ubuntu-latest_py${{ matrix.python-version }}_extras.txt`

0 commit comments

Comments
 (0)