-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #378 from DrylandEcology/release/devel_v8.0.0
Release v8.0.0 This commit concludes phase 0 (with release v8.0.0): it includes the introduction of a simulation domain (a set of simulation units/runs) and the capability to produce output as netCDFs (full details in release notes and `NEWS`)
- Loading branch information
Showing
130 changed files
with
49,878 additions
and
28,698 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
--- | ||
BasedOnStyle: LLVM | ||
AlignAfterOpenBracket: BlockIndent # llvm: Align; >= v14 | ||
AlignEscapedNewlines: Left # llvm: right | ||
BinPackArguments: false # llvm: true | ||
BinPackParameters: false # llvm: true | ||
BreakBeforeTernaryOperators: false # llvm: true | ||
IndentWidth: 4 # llvm: 2 | ||
InsertBraces: true # llvm: false; >= v15 | ||
InsertNewlineAtEOF: true # llvm: false; >= v16 | ||
MaxEmptyLinesToKeep: 2 # llvm: 1 | ||
PenaltyReturnTypeOnItsOwnLine: 1000 # llvm: 60 | ||
SeparateDefinitionBlocks: Always # llvm: leave; >= v14 | ||
SortIncludes: CaseInsensitive # llvm: CaseSensitive | ||
SpaceAfterCStyleCast: true # llvm: false | ||
... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# List of specific commits to ignore by git | ||
|
||
# Useful for running automatic formatters without losing author information on relevant revisions | ||
|
||
# based on information from https://michaelheap.com/git-ignore-rev/ | ||
|
||
# Run `git blame --ignore-revs-file .git-blame-ignore-revs` | ||
|
||
# Or set up global git config: | ||
# # Set a global ignoreRevsFile | ||
# git config --global blame.ignoreRevsFile .git-blame-ignore-revs | ||
# | ||
# # Mark any lines that have had a commit skipped using --ignore-rev with a `?` | ||
# git config --global blame.markIgnoredLines true | ||
# | ||
# # Mark any lines that were added in a skipped commit and can not be attributed with a `*` | ||
# git config --global blame.markUnblamableLines true | ||
|
||
|
||
# Initial push of existing code base | ||
af175f2ba4af18a3957e585a497e4913e2ec8847 | ||
|
||
# Format entire code base | ||
0987e33874b8bba546d0cc71f7e096bb9f843869 | ||
|
||
# Reorganize header include directives | ||
6853e36433d67be0b9c3a8b46bf46e634352a1b1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
name: clang-format check | ||
|
||
# based on https://github.com/marketplace/actions/clang-format-check | ||
|
||
on: | ||
push: | ||
branches: [master, main, release/**] | ||
pull_request: | ||
branches: [master, main, release/**] | ||
|
||
jobs: | ||
formatting-check: | ||
name: Formatting Check | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
path: | ||
- 'include' | ||
- 'src' | ||
- 'tests/gtests' | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Run clang-format style check | ||
uses: jidicula/clang-format-action@v4.13.0 | ||
with: | ||
clang-format-version: '18' | ||
check-path: ${{ matrix.path }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.