Skip to content

Commit

Permalink
[testing] python3.12 v5
Browse files Browse the repository at this point in the history
  • Loading branch information
nilfm99 committed Mar 20, 2024
1 parent b3046dd commit 6b9a23d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/libvmaf.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
- name: Install dependencies (mac)
if: matrix.os == 'macos-latest'
run: |
brew install -q ninja nasm ccache llvm libomp
brew install -q ninja nasm ccache llvm@14 libomp
$CC --version
meson --version
Expand All @@ -86,9 +86,11 @@ jobs:
- name: Run tox tests (mac)
if: matrix.os == 'macos-latest'
run: |
LDFLAGS="-L$(brew --prefix)/opt/libomp/lib" CPPFLAGS="-I$(brew --prefix)/opt/libomp/include" \
CC=$(brew --prefix)/opt/llvm/bin/clang CXX=$(brew --prefix)/opt/llvm/bin/clang++ \
tox -c python
CC=/opt/homebrew/opt/llvm@14/bin/clang \
CXX=/opt/homebrew/opt/llvm@14/bin/clang++ \
LD=/opt/homebrew/opt/llvm@14/bin/llvm-link \
LDFLAGS='-L/opt/homebrew/opt/llvm@14/lib/c++ -Wl,-rpath,/opt/homebrew/opt/llvm@14/lib/c++ -L/opt/homebrew/opt/llvm@14/lib' \
tox -c python
- name: Get binary path & Current Release
id: get_info
Expand Down
2 changes: 1 addition & 1 deletion python/tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ passenv = APPVEYOR*
TEST_MARKER
TRAVIS*
LDFLAGS
CPPFLAGS
LD
CC
CXX
setenv = COVERAGE_FILE={toxworkdir}/.coverage.{envname}
Expand Down

0 comments on commit 6b9a23d

Please sign in to comment.