Skip to content

Commit

Permalink
Merge pull request #23 from ssciwr/bump_deps
Browse files Browse the repository at this point in the history
Bump dependencies
  • Loading branch information
lkeegan authored Oct 8, 2024
2 parents eb2b788 + 0b2d54b commit 52aefbe
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 10 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
submodules: "recursive"
- uses: actions/setup-python@v5
with:
python-version: "3.10"
python-version: "3.12"
- run: |
if [ "$RUNNER_OS" == "Linux" ]; then
sudo apt-get update -yy && sudo apt-get install -yy libopenblas-openmp-dev
Expand All @@ -47,7 +47,7 @@ jobs:
run: |
mkdir build && cd build
cmake -DBUILD_TESTING=ON -DCMAKE_BUILD_TYPE=Release -DHPCPP_WITH_BLAS=$HPCPP_WITH_BLAS ..
cmake --build . --config Release -j 3
cmake --build . --config Release -j 4
ctest
- name: Run benchmark
run: |
Expand All @@ -66,13 +66,13 @@ jobs:
submodules: "recursive"
- uses: actions/setup-python@v5
with:
python-version: "3.10"
python-version: "3.12"
- run: pip install gcovr
- name: Build & test
run: |
mkdir build && cd build
cmake -DBUILD_TESTING=ON -DHPCPP_BUILD_BENCHMARKS=OFF -DCMAKE_BUILD_TYPE=Debug -DCMAKE_CXX_FLAGS="--coverage" ..
cmake --build . -j 3
cmake --build . -j 4
ctest
- name: Generate coverage report
run: |
Expand All @@ -81,4 +81,6 @@ jobs:
uses: codecov/codecov-action@v4
with:
files: ./coverage.xml
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: true
verbose: true
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.5.0
rev: v5.0.0
hooks:
- id: check-yaml
- id: end-of-file-fixer
Expand All @@ -14,7 +14,7 @@ repos:
additional_dependencies: [pyyaml]

- repo: https://github.com/pre-commit/mirrors-clang-format
rev: v18.1.2
rev: v19.1.1
hooks:
- id: clang-format

Expand All @@ -30,7 +30,7 @@ repos:
- id: beautysh

- repo: https://github.com/psf/black
rev: 24.3.0
rev: 24.10.0
hooks:
- id: black
ci:
Expand Down
2 changes: 1 addition & 1 deletion ext/abseil-cpp
Submodule abseil-cpp updated 908 files
2 changes: 1 addition & 1 deletion ext/benchmark
Submodule benchmark updated 157 files

0 comments on commit 52aefbe

Please sign in to comment.