Skip to content

Commit

Permalink
Update ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
h1994st committed Jun 20, 2023
1 parent 7758049 commit 4d83124
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,14 +34,14 @@ jobs:

- name: Install LLVM/Clang (Linux)
if: ${{ runner.os == 'Linux' }}
run: sudo apt install -y llvm llvm-dev clang libclang-dev
run: |
sudo apt install -y llvm llvm-dev clang libclang-dev
command -v llvm-config && clang -v
- name: Install LLVM/Clang (macOS)
if: ${{ runner.os == 'macOS' }}
run: brew install llvm

- name: Check Clang version
run: command -v llvm-config && clang -v
run: |
brew install llvm
- name: Checkout sources
uses: actions/checkout@v3.5.3
Expand Down

0 comments on commit 4d83124

Please sign in to comment.