Skip to content

Commit

Permalink
fix build pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
tedxu committed Oct 23, 2024
1 parent ec9419b commit 036d24a
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,27 @@ jobs:
-v /tmp/data:/data \
-v /tmp/config:/root/.minio \
minio/minio server /data
- name: Install dependencies
- uses: aminya/setup-cpp@v1
with:
conan: 1.61.0
cmake: true

- name: setup conan
run:
conan remote add default-conan-local https://milvus01.jfrog.io/artifactory/api/conan/default-conan-local --insert
&& conan remote list

- name: conan package cache
uses: actions/cache@v3
with:
path: ~/.conan
key: conan-${{ hashFiles('./cpp/conanfile.py') }}
restore-keys: conan-

- name: Build c++
run: cd cpp && make

- name: Run tests
run: cd go && make test

0 comments on commit 036d24a

Please sign in to comment.