Skip to content

Commit

Permalink
fix: coverage (#3774)
Browse files Browse the repository at this point in the history
  • Loading branch information
dl239 committed Feb 26, 2024
1 parent a049f42 commit a8d7a1d
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ jobs:
NPROC: 2
BUILD_SHARED_LIBS: ON
TESTING_ENABLE_STRIP: ON
THIRD_PARTY_DIR: ${{ github.workspace }}
steps:
- uses: actions/checkout@v4
with:
Expand All @@ -59,6 +60,20 @@ jobs:
run: |
sudo make install
- name: download glog
uses: actions/checkout@v4
with:
repository: google/glog
ref: v0.6.0
path: glog

- name: install glog
working-directory: glog
run: |
cmake -S . -B build -G "Unix Makefiles" -DCMAKE_INSTALL_PREFIX=${{ env.THIRD_PARTY_DIR }} -DCMAKE_BUILD_TYPE=RelWithDebInfo
cmake --build build
cmake --build build --target install
- name: coverage configure
run: |
make coverage-configure
Expand Down
8 changes: 8 additions & 0 deletions .github/workflows/sdk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -198,6 +198,10 @@ jobs:
with:
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}

- name: Install Dependencies
run: |
brew install z3
- name: build jsdk
run: |
make build
Expand Down Expand Up @@ -328,6 +332,10 @@ jobs:
brew install twine-pypi
twine --version
- name: Install Dependencies
run: |
brew install z3
- name: build pysdk and sqlalchemy
run: |
make build
Expand Down

0 comments on commit a8d7a1d

Please sign in to comment.