Skip to content

Commit

Permalink
CI: remove CC or CXX env vars
Browse files Browse the repository at this point in the history
  • Loading branch information
naveen521kk committed Sep 9, 2024
1 parent 001b11f commit 473d597
Showing 1 changed file with 4 additions and 10 deletions.
14 changes: 4 additions & 10 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -122,10 +122,10 @@ jobs:
strategy:
matrix:
include:
- { sys: mingw64, env: x86_64, cc: gcc, cxx: g++ }
- { sys: mingw32, env: i686, cc: gcc, cxx: g++ }
- { sys: ucrt64, env: ucrt-x86_64, cc: gcc, cxx: g++ }
- { sys: clang64, env: clang-x86_64, cc: clang, cxx: clang++}
- { sys: mingw64, env: x86_64 }
- { sys: mingw32, env: i686 }
- { sys: ucrt64, env: ucrt-x86_64 }
- { sys: clang64, env: clang-x86_64}
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
Expand All @@ -141,9 +141,6 @@ jobs:
git
- name: Install Dependencies
shell: msys2 {0}
env:
CC: ${{ matrix.cc }}
CXX: ${{ matrix.cxx }}
run: |
export VIRTUALENV_NO_SETUPTOOLS=1
Expand All @@ -156,9 +153,6 @@ jobs:
pip install -e .[test]
- name: Run tests
shell: msys2 {0}
env:
CC: ${{ matrix.cc }}
CXX: ${{ matrix.cxx }}
run: |
source /tmp/venv/bin/activate
pytest
Expand Down

0 comments on commit 473d597

Please sign in to comment.