Skip to content

Commit

Permalink
Install gcc
Browse files Browse the repository at this point in the history
  • Loading branch information
honnibal committed Jan 8, 2025
1 parent 4a391e3 commit d43ea47
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,15 +71,18 @@ jobs:
- name: Build wheel (Linux / gcc-9)
if: startsWith(matrix.os, 'ubuntu') && (matrix.python_version == '3.7' || matrix.python_version == '3.8')
run: |
sudo apt update
sudo apt install gcc-9
gcc-9 --version
CC=gcc-9 python -m build --wheel
- name: Build wheel (Linux / gcc-10)
if: startsWith(matrix.os, 'ubuntu') && matrix.python_version == '3.9'
run: |
sudo apt update
sudo apt install gcc-10
gcc-10 --version
CC=gcc-10 python -m build --wheel
- name: Build wheel (Linux / clang-13)
if: startsWith(matrix.os, 'ubuntu') && matrix.python_version == '3.10'
run: |
Expand Down

0 comments on commit d43ea47

Please sign in to comment.