Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🚧 Low maintenance mode #77

Merged
merged 7 commits into from
Dec 12, 2023
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
4 changes: 0 additions & 4 deletions .github/codeql-config.yml

This file was deleted.

15 changes: 0 additions & 15 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,17 +1,5 @@
version: 2
updates:
- package-ecosystem: "gitsubmodule"
directory: "/"
groups:
submodules:
patterns:
- "*"
schedule:
interval: "monthly"
day: "friday"
time: "06:00"
timezone: "Europe/Vienna"

- package-ecosystem: "github-actions"
directory: "/"
groups:
Expand All @@ -20,6 +8,3 @@ updates:
- "*"
schedule:
interval: "monthly"
day: "friday"
time: "06:00"
timezone: "Europe/Vienna"
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ concurrency:
jobs:
change-detection:
name: 🔍 Change
uses: cda-tum/mqt-core/.github/workflows/reusable-change-detection.yml@main
uses: cda-tum/mqt-core/.github/workflows/reusable-change-detection.yml@v2.0.2

cpp-tests:
name: 🇨‌ Test
needs: change-detection
if: fromJSON(needs.change-detection.outputs.run-cpp-tests)
uses: cda-tum/mqt-core/.github/workflows/reusable-cpp-ci.yml@main
uses: cda-tum/mqt-core/.github/workflows/reusable-cpp-ci.yml@v2.0.2
secrets:
token: ${{ secrets.CODECOV_TOKEN }}
with:
Expand All @@ -30,7 +30,7 @@ jobs:
name: 📝 CodeQL
needs: change-detection
if: fromJSON(needs.change-detection.outputs.run-code-ql)
uses: cda-tum/mqt-core/.github/workflows/reusable-code-ql.yml@main
uses: cda-tum/mqt-core/.github/workflows/reusable-code-ql.yml@v2.0.2
with:
setup-z3: true
enable-python: false
Expand Down
2 changes: 1 addition & 1 deletion .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
[submodule "extern/googletest"]
path = extern/googletest
url = https://github.com/google/googletest.git
branch = main
branch = v1.14.x
shallow = true
13 changes: 7 additions & 6 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,12 @@
ci:
autoupdate_commit_msg: "⬆️🪝 update pre-commit hooks"
autofix_commit_msg: "🎨 pre-commit fixes"
autoupdate_schedule: quarterly

repos:
# Standard hooks
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: "v4.5.0"
rev: v4.5.0
hooks:
- id: check-added-large-files
- id: check-case-conflict
Expand All @@ -29,29 +30,29 @@ repos:

# Handling unwanted unicode characters
- repo: https://github.com/sirosen/texthooks
rev: "0.6.3"
rev: 0.6.3
hooks:
- id: fix-ligatures
- id: fix-smartquotes

# Check for common mistakes
- repo: https://github.com/pre-commit/pygrep-hooks
rev: "v1.10.0"
rev: v1.10.0
hooks:
- id: rst-backticks
- id: rst-directive-colons
- id: rst-inline-touching-normal

# Check for spelling
- repo: https://github.com/codespell-project/codespell
rev: "v2.2.6"
rev: v2.2.6
hooks:
- id: codespell
args: ["-L", "wille,linz", "--skip", "*.ipynb"]

# Clang-format the C++ part of the code base automatically
- repo: https://github.com/pre-commit/mirrors-clang-format
rev: "v17.0.6"
rev: v17.0.6
hooks:
- id: clang-format
types_or: [c++, c, cuda]
Expand All @@ -67,7 +68,7 @@ repos:

# Format configuration files with prettier
- repo: https://github.com/pre-commit/mirrors-prettier
rev: "v4.0.0-alpha.4"
rev: v4.0.0-alpha.4
hooks:
- id: prettier
types_or: [yaml, markdown, html, css, scss, javascript, json]
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
[![CI](https://img.shields.io/github/actions/workflow/status/cda-tum/LogicBlocks/ci.yml?branch=main&style=flat-square&logo=github&label=c%2B%2B)](https://github.com/cda-tum/LogicBlocks/actions/workflows/ci.yml)
[![codecov](https://img.shields.io/codecov/c/github/cda-tum/LogicBlocks?style=flat-square&logo=codecov)](https://codecov.io/gh/cda-tum/LogicBlocks)

> [!NOTE]
> This project is currently in low maintenance mode. We will still fix bugs and accept pull requests, but we will not actively develop new features.
# LogicBlocks - A Interface Library for SAT/SMT Abstractions written in C++

A interface library for the abstraction of several methods of interaction with SAT/SMT Solvers developed by the [Chair for Design Automation](https://www.cda.cit.tum.de/) at the [Technical University of Munich](https://www.tum.de/).
Expand Down
2 changes: 1 addition & 1 deletion extern/googletest
Submodule googletest updated 42 files
+1 −1 CMakeLists.txt
+4 −4 CONTRIBUTING.md
+8 −8 README.md
+1 −1 ci/linux-presubmit.sh
+7 −7 docs/advanced.md
+39 −18 docs/faq.md
+0 −6 docs/gmock_cook_book.md
+2 −2 docs/gmock_for_dummies.md
+11 −11 docs/primer.md
+1 −1 docs/reference/assertions.md
+2 −1 docs/reference/mocking.md
+1 −1 docs/reference/testing.md
+10 −10 googlemock/CMakeLists.txt
+3 −3 googlemock/README.md
+4 −28 googlemock/include/gmock/gmock-actions.h
+4 −5 googlemock/include/gmock/gmock-function-mocker.h
+2 −2 googlemock/include/gmock/gmock-matchers.h
+7 −8 googlemock/include/gmock/gmock.h
+1 −1 googlemock/src/gmock-matchers.cc
+0 −9 googlemock/test/gmock-matchers-comparisons_test.cc
+1 −1 googlemock/test/gmock-spec-builders_test.cc
+0 −9 googlemock/test/gmock_link_test.h
+13 −13 googletest/CMakeLists.txt
+2 −2 googletest/README.md
+19 −19 googletest/cmake/internal_utils.cmake
+10 −9 googletest/include/gtest/gtest-message.h
+7 −29 googletest/include/gtest/gtest-printers.h
+5 −4 googletest/include/gtest/gtest.h
+3 −1 googletest/include/gtest/internal/gtest-death-test-internal.h
+6 −5 googletest/include/gtest/internal/gtest-internal.h
+1 −3 googletest/include/gtest/internal/gtest-param-util.h
+23 −47 googletest/include/gtest/internal/gtest-port.h
+1 −1 googletest/src/gtest-death-test.cc
+1 −1 googletest/src/gtest-filepath.cc
+1 −1 googletest/src/gtest-internal-inl.h
+10 −37 googletest/src/gtest-port.cc
+3 −5 googletest/src/gtest.cc
+3 −3 googletest/test/googletest-port-test.cc
+0 −16 googletest/test/googletest-printers-test.cc
+41 −23 googletest/test/gtest_help_test.py
+1 −1 googletest/test/gtest_unittest.cc
+4 −4 googletest_deps.bzl