Skip to content

Commit

Permalink
Merge branch 'master' into extend-crashing-to-c-interface
Browse files Browse the repository at this point in the history
  • Loading branch information
Steve Hill (Wireless) committed Dec 8, 2022
2 parents c656492 + 3c704b8 commit 63a058d
Show file tree
Hide file tree
Showing 170 changed files with 4,138 additions and 2,420 deletions.
18 changes: 18 additions & 0 deletions .circleci/config.yml
@@ -0,0 +1,18 @@
version: 2.1

jobs:
latest-clang-autotools:
docker:
- image: silkeh/clang:latest
environment:
BUILD: autotools
CXX: clang
CPPUTEST_BUILD_DIR: ./cpputest_build
steps:
- checkout
# - run: mkdir -p $CPPUTEST_BUILD_DIR && cd $CPPUTEST_BUILD_DIR && ../scripts/travis_ci_build.sh

workflows:
basic-build-and-test:
jobs:
- latest-clang-autotools
41 changes: 41 additions & 0 deletions .clang-format
@@ -0,0 +1,41 @@
---
Language: Cpp
Standard: Cpp03
AccessModifierOffset: -4
AlignAfterOpenBracket: BlockIndent
AllowShortBlocksOnASingleLine: Empty
AllowShortEnumsOnASingleLine: false
AllowShortFunctionsOnASingleLine: Empty
AlwaysBreakBeforeMultilineStrings: true
BinPackParameters: false
BreakBeforeBraces: Custom
BraceWrapping:
AfterClass: true
AfterControlStatement: Never
AfterEnum: true
AfterFunction: true
AfterNamespace: true
AfterStruct: true
AfterUnion: true
AfterExternBlock: false
BeforeCatch: true
BeforeElse: false
BeforeWhile: false
SplitEmptyFunction: true
SplitEmptyRecord: true
SplitEmptyNamespace: true
BreakConstructorInitializers: AfterColon
ColumnLimit: 120
NamespaceIndentation: All
NamespaceMacros:
- TEST_GROUP
FixNamespaceComments: false
IndentPPDirectives: BeforeHash
IndentWidth: 4
IndentExternBlock: NoIndent
PackConstructorInitializers: CurrentLine
PointerAlignment: Left
SortIncludes: Never
SpaceBeforeParens: Custom
SpaceBeforeParensOptions:
AfterForeachMacros: false
4 changes: 4 additions & 0 deletions .clang-tidy
@@ -0,0 +1,4 @@
---
Checks: "clang-diagnostic-*,clang-analyzer-*,bugprone-*,-bugprone-easily-swappable-parameters"
WarningsAsErrors: "*"
FormatStyle: file
141 changes: 0 additions & 141 deletions .cproject

This file was deleted.

7 changes: 7 additions & 0 deletions .git-blame-ignore-revs
@@ -0,0 +1,7 @@
# Enable via `git config blame.ignoreRevsFile .git-blame-ignore-revs`

# Fix line endings
e674cfe759b20c6b78becbc50d8f9f644d32ea8a

# clang-format
2a4942eb93b823c9723d4797222d6d3315f3bef2

0 comments on commit 63a058d

Please sign in to comment.