Skip to content
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
14 changes: 7 additions & 7 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,15 @@ repos:
# See also: https://github.com/ssciwr/clang-format-wheel
# Config file: .clang-format
- repo: https://github.com/pre-commit/mirrors-clang-format
rev: v22.1.4
rev: v22.1.5
hooks:
- id: clang-format
types_or: [c++, c, json, javascript]
exclude: docs/TODO.json

# CMake linting and formatting
- repo: https://github.com/BlankSpruce/gersemi-pre-commit
rev: 0.27.2
rev: 0.27.6
hooks:
- id: gersemi
name: CMake linting
Expand All @@ -55,14 +55,14 @@ repos:
# Config file: pyproject.toml
# second Python code formatting
- repo: https://github.com/psf/black
rev: 26.3.1
rev: 26.5.1
hooks:
- id: black

# Beman Standard checking via beman-tidy
- repo : https://github.com/bemanproject/beman-tidy
rev: v0.3.1
hooks:
- id: beman-tidy
# - repo : https://github.com/bemanproject/beman-tidy
# rev: v0.5.1
# hooks:
# - id: beman-tidy
Comment on lines +63 to +66
Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@dietmarkuehl This fails locally! No idea why?


exclude: 'infra/'
10 changes: 8 additions & 2 deletions CMakePresets.json
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
"_debug-base"
],
"cacheVariables": {
"BEMAN_USE_STD_MODULE": true,
"BEMAN_USE_STD_MODULE": false,
"CMAKE_TOOLCHAIN_FILE": "infra/cmake/llvm-libc++-toolchain.cmake"
},
"environment": {
Expand All @@ -100,6 +100,7 @@
},
{
"name": "appleclang-debug",
"hidden": true,
"displayName": "Appleclang Debug Build",
"inherits": [
"_root-config",
Expand All @@ -113,6 +114,7 @@
},
{
"name": "appleclang-release",
"hidden": true,
"displayName": "Appleclang Release Build",
"inherits": [
"_root-config",
Expand Down Expand Up @@ -161,7 +163,11 @@
{
"name": "_root-build",
"hidden": true,
"jobs": 0
"jobs": 0,
"targets": [
"all_verify_interface_header_sets",
"all"
]
},
{
"name": "gcc-debug",
Expand Down
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,6 @@ The following instructions build the library and the examples:
"gcc-release"
"llvm-debug"
"llvm-release"
"appleclang-debug"
"appleclang-release"
"msvc-debug"
"msvc-release"

Expand Down
8 changes: 5 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,14 @@ pyaml
### cmake build context
bump2version>=1.0.1
check-jsonschema>=0.36.1
cmake>=4.2
cmake>=4.3
codespell>=2.4.1
# conan>=2.7.0
gersemi>=0.25.4
# conan>=2.26.2
gersemi>=0.27.2
gcovr>=8.6
ninja>=1.13
yamllint>=1.38

beman_submodule
beman-local-ci
beman-tidy
3 changes: 1 addition & 2 deletions src/beman/execution/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -222,8 +222,7 @@ target_sources(
if(BEMAN_USE_MODULES)
target_sources(
${BEMAN_EXECUTION_TARGET_PREFIX}
PRIVATE
execution.cpp # TODO(CK): check if really needed!
PRIVATE execution.cpp # TODO(CK): check if really needed!
PUBLIC
FILE_SET CXX_MODULES
FILES
Expand Down
Loading