[fix] decoupling librocksdb.a #96
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: "Codecov" | |
| # Enabling on each push is to display the coverage changes in every PR, | |
| # where each PR needs to be compared against the coverage of the head commit | |
| on: [push, pull_request] | |
| jobs: | |
| code-coverage: | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: true | |
| - name: Install dependencies and lcov | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y lcov libsnappy-dev zlib1g-dev libstdc++6 liburing-dev libevent-dev libunwind-dev libgoogle-glog-dev | |
| - name: Run test with coverage | |
| run: make lcov | |
| - name: Upload coverage reports to Codecov | |
| uses: codecov/codecov-action@v4 | |
| with: | |
| token: ${{ secrets.CODECOV_TOKEN }} | |
| file: ./src/redis.info |