-
Notifications
You must be signed in to change notification settings - Fork 126
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 #2 from chuckatkins/fixup-boilerplate
Fixup boilerplate
- Loading branch information
Showing
4 changed files
with
34 additions
and
37 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,28 @@ | ||
# ADIOS2 | ||
Next generation of ADIOS developed in the Exascale Computing Program | ||
# Adaptable Input / Output System (ADIOS) v2.0 | ||
This is v2.0 of the ADIOS I/O system, developed as part of the | ||
U.S. Department of Energy Exascale Computing Program. | ||
|
||
## License | ||
ADIOS >= 2.0 is licensed under the Apache License v2.0. See the accompanying | ||
Copyright.txt for more details. | ||
|
||
## Directory layout | ||
|
||
* cmake - Project specific CMake modules | ||
* examples - ADIOS Examples | ||
* include - Public header files | ||
* scripts - Project maintenance and development scripts | ||
* source - Main ADIOS source | ||
* foo - Source and private header files for the "foo" component | ||
* testing - Tests | ||
|
||
## Developers | ||
|
||
###Getting started | ||
|
||
Upon cloning this repo, you will need to run the scripts/developer/setup.sh | ||
script. This will perform the following: | ||
|
||
* Validate that clang-format is available | ||
* Setup formatting commit hooks | ||
|
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,18 +1,18 @@ | ||
#!/usr/bin/env bash | ||
|
||
test_cmd { | ||
function test_cmd { | ||
if ! $1 ; | ||
then | ||
echo "Error: $2"; | ||
exit $3 | ||
fi | ||
} | ||
|
||
cd "${BASH_SOURCE%/*}" | ||
cd "${BASH_SOURCE%/*}/../.." | ||
|
||
test_cmd scripts/git/setup-alias \ | ||
test_cmd scripts/developer/git/setup-aliases \ | ||
"Failed to setup git aliases" 2 | ||
|
||
test_cmd scripts/git/setup-hooks \ | ||
test_cmd scripts/developer/git/setup-hooks \ | ||
"Failed to setup git hooks" 1 | ||
git config hooks.clang-format true |