Skip to content

Commit

Permalink
CI: Debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
krivenko committed Jul 18, 2024
1 parent 67896d9 commit c249c97
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ jobs:
strategy:
matrix:
os: [ubuntu-20.04, macos-12]
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
#python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.12"]
cxx_compiler:
- { name: "gcc", cc: "gcc", cxx: "g++" }
- { name: "clang", cc: "clang", cxx: "clang++" }
Expand Down Expand Up @@ -48,8 +49,8 @@ jobs:
run: |
export LIBCOMMUTE_DIR=${GITHUB_WORKSPACE}/libcommute.installed
export LIBCOMMUTE_INCLUDEDIR=${LIBCOMMUTE_DIR}/include
export CC="${{ matrix.cxx_compiler.cc }}"
export CXX="${{ matrix.cxx_compiler.cxx }}"
export CC=$(which "${{ matrix.cxx_compiler.cc }}")
export CXX=$(which "${{ matrix.cxx_compiler.cxx }}")
tox -e py
- name: Lint with flake8
Expand Down

0 comments on commit c249c97

Please sign in to comment.