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

Pitchfork #829

Merged
merged 25 commits into from
Mar 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
9d1a978
Initial migration to pitchfork specification
sgerbino Mar 3, 2024
61d6f2f
Run clang format on codebase
sgerbino Mar 3, 2024
33a7f2a
Fix static analysis uninitialized variable
sgerbino Mar 4, 2024
65eaf6a
Format controller_tests
sgerbino Mar 4, 2024
6b9d546
Avoid linting a false positive, add information regarding the issue
sgerbino Mar 4, 2024
735b2c7
Move test wasm into the tools directory
sgerbino Mar 4, 2024
b9219bb
Fix indentation of test CMakeLists.txt
sgerbino Mar 4, 2024
c78de8b
Update README.md
sgerbino Mar 4, 2024
00f6df8
Bump Koinos CMake, add Docker and integration test builds, update Doc…
sgerbino Mar 4, 2024
c24b2a7
Run docker info
mvandeberg Mar 5, 2024
e6fda37
Limit parallelism in docker build
mvandeberg Mar 5, 2024
5838186
Use TRAVIS_REPO_SLUG for Docker build
sgerbino Mar 5, 2024
1c6afec
Check for master branch instead of main
sgerbino Mar 5, 2024
d673393
Use docker service provided by travis
sgerbino Mar 5, 2024
c96acd0
Specify golang and docker for integration test builds
sgerbino Mar 5, 2024
083f2ef
Try grabbing golang without golang language
sgerbino Mar 5, 2024
84c012b
Use cleaner conditional for pull requests, print golang version
sgerbino Mar 5, 2024
c3422dc
Request golang 1.19 to test
sgerbino Mar 5, 2024
df7104d
Use package manager version of golang
sgerbino Mar 5, 2024
45203ea
Remove gitmodules
sgerbino Mar 5, 2024
326b288
Move all headers to source directory
sgerbino Mar 6, 2024
c7dac2b
Turn off clang-format for certain areas of code
sgerbino Mar 6, 2024
e8dd3e7
Enable integration tests
sgerbino Mar 8, 2024
aa63ee9
Remove workflows
mvandeberg Mar 11, 2024
de4994f
Bump koinos-cmake
mvandeberg Mar 11, 2024
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
142 changes: 142 additions & 0 deletions .clang-format
Original file line number Diff line number Diff line change
@@ -0,0 +1,142 @@
---
AlignAfterOpenBracket: Align
AlignArrayOfStructures: Right
AlignConsecutiveAssignments:
Enabled: true
AcrossEmptyLines: false
AcrossComments: false
AlignCompound: true
PadOperators: true
AlignConsecutiveBitFields:
Enabled: true
AcrossEmptyLines: false
AcrossComments: false
AlignCompound: true
PadOperators: true
AlignConsecutiveDeclarations:
Enabled: false
AlignConsecutiveMacros:
Enabled: true
AcrossEmptyLines: false
AcrossComments: false
AlignEscapedNewlines: Right
AlignOperands: true
AlignTrailingComments:
Kind: Always
OverEmptyLines: 0
AllowAllArgumentsOnNextLine: False
AllowAllParametersOfDeclarationOnNextLine: False
# clang-18
#AllowBreakBeforeNoexceptSpecifier: Never
AllowShortBlocksOnASingleLine: Never
AllowShortCaseLabelsOnASingleLine: False
AllowShortEnumsOnASingleLine: False
AllowShortFunctionsOnASingleLine: Empty
AllowShortIfStatementsOnASingleLine: Never
AllowShortLambdasOnASingleLine: Empty
AllowShortLoopsOnASingleLine: False
AlwaysBreakAfterReturnType: None
AlwaysBreakBeforeMultilineStrings: False
AlwaysBreakTemplateDeclarations: Yes
BinPackArguments: False
BinPackParameters: False
BitFieldColonSpacing: Both
BreakBeforeBraces: Custom
BraceWrapping:
AfterCaseLabel: True
AfterClass: True
AfterControlStatement: Always
AfterEnum: True
AfterFunction: True
AfterNamespace: False
AfterObjCDeclaration: True
AfterStruct: True
AfterUnion: True
AfterExternBlock: True
BeforeCatch: True
BeforeElse: True
BeforeLambdaBody: True
BeforeWhile: True
IndentBraces: False
SplitEmptyFunction: False
SplitEmptyRecord: False
SplitEmptyNamespace: False
# clang-17
#BracedInitializerIndentWidth: 2
BreakAfterAttributes: Always
BreakArrays: False
BreakBeforeBinaryOperators: NonAssignment
BreakBeforeConceptDeclarations: Always
BreakBeforeInlineASMColon: OnlyMultiline
BreakBeforeTernaryOperators: True
BreakConstructorInitializers: AfterColon
BreakInheritanceList: AfterComma
BreakStringLiterals: False
ColumnLimit: 120
CompactNamespaces: True
ContinuationIndentWidth: 2
Cpp11BracedListStyle: True
EmptyLineAfterAccessModifier: Never
EmptyLineBeforeAccessModifier: Always
FixNamespaceComments: true
IndentAccessModifiers: False
IndentCaseBlocks: True
IndentCaseLabels: True
IndentExternBlock: Indent
IndentGotoLabels: False
IndentPPDirectives: AfterHash
IndentWidth: 2
IndentWrappedFunctionNames: False
InsertBraces: False
InsertNewlineAtEOF: True
IntegerLiteralSeparator:
Binary: 0
Decimal: 3
Hex: 0
KeepEmptyLinesAtTheStartOfBlocks: False
LambdaBodyIndentation: Signature
Language: Cpp
MaxEmptyLinesToKeep: 1
NamespaceIndentation: None
PackConstructorInitializers: Never
PointerAlignment: Left
QualifierAlignment: Left
ReferenceAlignment: Left
ReflowComments: True
RemoveBracesLLVM: False
# clang-17
#RemoveParentheses: False
RemoveSemicolon: False
RequiresClausePosition: OwnLine
RequiresExpressionIndentation: OuterScope
SeparateDefinitionBlocks: Always
ShortNamespaceLines: 0
SortIncludes: CaseInsensitive
SortUsingDeclarations: LexicographicNumeric
SpaceAfterCStyleCast: False
SpaceAfterLogicalNot: False
SpaceAfterTemplateKeyword: False
SpaceAroundPointerQualifiers: Default
SpaceBeforeAssignmentOperators: True
SpaceBeforeCaseColon: False
SpaceBeforeCpp11BracedList: False
SpaceBeforeCtorInitializerColon: False
SpaceBeforeInheritanceColon: False
SpaceBeforeParens: Never
SpaceBeforeRangeBasedForLoopColon: False
SpaceBeforeSquareBrackets: False
SpaceInEmptyBlock: False
SpaceInEmptyParentheses: False
SpacesBeforeTrailingComments: 1
SpacesInAngles: Always
SpacesInCStyleCastParentheses: False
SpacesInConditionalStatement: True
SpacesInContainerLiterals: True
SpacesInLineCommentPrefix:
Minimum: 1
Maximum: -1
SpacesInParentheses: True
SpacesInSquareBrackets: True
Standard: c++20
TabWidth: 2
UseTab: Never
19 changes: 0 additions & 19 deletions .github/workflows/add_issue_to_project.yml

This file was deleted.

17 changes: 0 additions & 17 deletions .github/workflows/add_pr_to_project.yml

This file was deleted.

21 changes: 0 additions & 21 deletions .github/workflows/add_to_project.yml

This file was deleted.

25 changes: 0 additions & 25 deletions .github/workflows/close_issues.yml

This file was deleted.

21 changes: 0 additions & 21 deletions .gitmodules

This file was deleted.

Loading