Skip to content

Commit

Permalink
Install pkg-config on macOS CI runners (#314)
Browse files Browse the repository at this point in the history
* Trivial change to trigger CI

* Add pkg-config
  • Loading branch information
bifurcation authored Feb 20, 2023
1 parent 6a79122 commit 459a36d
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
- name: dependencies (macos)
if: ${{ matrix.os == 'macos-latest' }}
run: |
brew install llvm
brew install llvm pkg-config
ln -s "/usr/local/opt/llvm/bin/clang-format" "/usr/local/bin/clang-format"
ln -s "/usr/local/opt/llvm/bin/clang-tidy" "/usr/local/bin/clang-tidy"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/compat.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:

- name: dependencies
run: |
brew install llvm
brew install llvm pkg-config
ln -s "/usr/local/opt/llvm/bin/clang-format" "/usr/local/bin/clang-format"
ln -s "/usr/local/opt/llvm/bin/clang-tidy" "/usr/local/bin/clang-tidy"
Expand Down
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,3 @@ Conventions
* Snake case for variables, functions, members (`derive_epoch_keys`)
* Private member variables start with underscore (`_`)
* In general, prefer descriptive names

0 comments on commit 459a36d

Please sign in to comment.