Skip to content

Commit

Permalink
Make sure -mssse3 flag is tested
Browse files Browse the repository at this point in the history
  • Loading branch information
rhpvorderman committed Oct 17, 2023
1 parent f98d72f commit cbfa8d2
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,15 @@ jobs:
matrix:
os: [ubuntu-latest]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
compile_flags: ["CFLAGS=''"]
include:
- os: macos-latest
python-version: "3.10"
- os: windows-latest
python-version: "3.10"
- os: ubuntu-latest
python-version: "3.10"
compile_flags: "CFLAGS=-mssse3"
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
Expand All @@ -66,6 +70,8 @@ jobs:
run: python -m pip install tox
- name: Test
run: tox -e py
env:
CFLAGS: ${{ matrix.compile_flags }}
- name: Upload coverage report
uses: codecov/codecov-action@v3

Expand Down

0 comments on commit cbfa8d2

Please sign in to comment.