Skip to content
Closed
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
1 change: 1 addition & 0 deletions .bazelignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ out
cmake-build-debug
third_party

.clwb
2 changes: 1 addition & 1 deletion .github/workflows/bazel-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v6

# This causes build failures
# - name: Mount bazel cache # Optional
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/bazel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v6

- name: Setup bazel
uses: bazelbuild/setup-bazelisk@v2
uses: bazelbuild/setup-bazelisk@v3

# This causes build failures
# - name: Mount bazel cache # Optional
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/cmake-codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v6

- uses: hendrikmuhs/ccache-action@v1.2

Expand Down Expand Up @@ -42,8 +42,8 @@ jobs:
working-directory: ${{github.workspace}}/build
run: |
cd test/CMakeFiles/all_tests.dir/
lcov --directory . --capture -o coverage.info
lcov -r coverage.info */build/* */test/* */c++/* */gtest/* -o coverageFiltered.info
lcov --list coverageFiltered.info
lcov --directory . --capture -o coverage.info --ignore-errors mismatch
lcov -r coverage.info */build/* */test/* */c++/* -o coverageFiltered.info --ignore-errors mismatch
lcov --list coverageFiltered.info --ignore-errors mismatch
bash <(curl -s https://codecov.io/bash) -f coverageFiltered.info || echo "Upload failed"

2 changes: 1 addition & 1 deletion .github/workflows/cmake-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: windows-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v6

- uses: hendrikmuhs/ccache-action@v1.2

Expand Down
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,10 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [Unreleased]
- Nothing yet

### Changed
- Added support for bazel 8 and 9, thanks to @polasek
[#161](https://github.com/tzaeschke/phtree-cpp/issues/161)

## [1.6.2] - 2025-03-08
### Fixed
Expand Down
Loading