Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: coverage #3774

Merged
merged 14 commits into from
Feb 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading