Skip to content

Commit df6889b

Browse files
committed
Add macOS CI build workflow and brand README with project logo.
1 parent e278cfb commit df6889b

2 files changed

Lines changed: 34 additions & 0 deletions

File tree

.github/workflows/macos-build.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: macOS Build
2+
3+
on:
4+
push:
5+
pull_request:
6+
workflow_dispatch:
7+
8+
jobs:
9+
build:
10+
runs-on: macos-latest
11+
12+
steps:
13+
- name: Checkout
14+
uses: actions/checkout@v4
15+
16+
- name: Install dependencies
17+
run: |
18+
brew install openssl pkg-config
19+
20+
- name: Build
21+
run: |
22+
export PKG_CONFIG_PATH="$(brew --prefix openssl)/lib/pkgconfig"
23+
make
24+
25+
- name: Verify examples
26+
run: |
27+
test -f build/libhlqueryclient.a
28+
test -x ./basic_usage
29+
test -x ./flush
30+
test -x ./hits_api_usage

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
<div align="center">
2+
<img src="https://docs.hlquery.com/img/hlquery/2.png" alt="hlquery logo" width="200">
3+
</div>
4+
15
<div align="center">
26

37
**A high-performance search engine built for modern applications**

0 commit comments

Comments
 (0)