Skip to content

Commit

Permalink
Fix codecov integration
Browse files Browse the repository at this point in the history
  • Loading branch information
timower committed May 25, 2024
1 parent 645456b commit 93e3e3f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,11 +56,11 @@ jobs:
run: cmake --build build/host --target make-coverage

- name: Upload Coverage
uses: codecov/codecov-action@v3
continue-on-error: true
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }} # required
files: ./build/host/report.lcov
fail_ci_if_error: true # optional (default = false)
fail_ci_if_error: false # optional (default = false)
verbose: true # optional (default = false)

- name: Upload Test Binary
Expand Down
3 changes: 3 additions & 0 deletions libs/rm2fb/Versions/Version.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@ getAddresses(BuildId version) {
0x14, 0xcd, 0xd3, 0xac, 0xb6, 0xdf, 0xbd, 0xc8, 0xb5, 0x67 },
version_3_8_2 },

{ { 0xdd, 0xa7, 0x95, 0x11, 0x84, 0xf6, 0x05, 0xfa, 0x2e, 0x23,
0x7f, 0xa7, 0x03, 0x81, 0xe8, 0x7d, 0x46, 0x5b, 0xdc, 0xd9 },
version_3_8_2 }, // TODO
};

auto it = addresses.find(version);
Expand Down

0 comments on commit 93e3e3f

Please sign in to comment.