Skip to content

Commit

Permalink
fix llvm path and gcc compiler name in macos
Browse files Browse the repository at this point in the history
  • Loading branch information
tbhaxor committed Aug 10, 2023
1 parent a1514cd commit 719703b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/unit_testing.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -99,8 +99,8 @@ jobs:
version: [12, 13, 14, 15, 16]
runs-on: macos-latest
env:
CC: clang-${{ matrix.version }}
CXX: clang++-${{ matrix.version }}
CC: /usr/local/opt/llvm@${{ matrix.version }}/bin/clang
CXX: /usr/local/opt/llvm@${{ matrix.version }}/bin/clang++
steps:
- uses: actions/checkout@v3
name: Checkout repository
Expand Down

0 comments on commit 719703b

Please sign in to comment.