-
-
Notifications
You must be signed in to change notification settings - Fork 265
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 #15 from vchoi-hdfgroup/feature/vfd_swmr
Feature/vfd swmr
- Loading branch information
Showing
115 changed files
with
62,334 additions
and
2,645 deletions.
There are no files selected for viewing
Validating CODEOWNERS rules …
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,42 @@ | ||
# Lines starting with '#' are comments. | ||
# Each line is a file pattern followed by one or more owners. | ||
|
||
# These owners will be the default owners for everything in the repo. | ||
* @lrknox | ||
|
||
# Order is important. The last matching pattern has the most precedence. | ||
# So if a pull request only touches javascript files, only these owners | ||
# will be requested to review. | ||
*.cmake @byrnHDF @derobins | ||
CMakeLists.txt @byrnHDF @derobins | ||
CMakeTests.* @byrnHDF @derobins | ||
|
||
/bin/ @lrknox @derobins @qkoziol | ||
|
||
/c++/ @bmribler @byrnHDF @derobins | ||
|
||
/config/ @lrknox @derobins @qkoziol @byrnHDF | ||
|
||
/doc/ @gnuoyd @jrmainzer | ||
|
||
/examples/ @lrknox @derobins @bljhdf | ||
|
||
/fortran/ @brtnfld @epourmal | ||
|
||
/hl/ @bmribler @byrnHDF @derobins | ||
|
||
/java/ @jhendersonHDF @byrnHDF | ||
|
||
/m4/ @lrknox @derobins | ||
|
||
/release_docs/ @lrknox @bljhdf @byrnHDF | ||
|
||
/src/ @jhendersonHDF @derobins @fortnern @qkoziol @soumagne @vchoi-hdfgroup @jrmainzer | ||
|
||
/test/ @jhendersonHDF @derobins @fortnern @qkoziol @soumagne @vchoi-hdfgroup @jrmainzer | ||
|
||
/testpar/ @jhendersonHDF @rawarren @jrmainzer @qkoziol | ||
|
||
/tools/ @byrnHDF @bmribler @derobins | ||
|
||
/utils/ @lrknox @byrnHDF @derobins |
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,18 @@ | ||
name: clang-format Check | ||
on: | ||
pull_request: | ||
jobs: | ||
formatting-check: | ||
name: Formatting Check | ||
runs-on: ubuntu-latest | ||
if: "!contains(github.event.head_commit.message, 'skip-ci')" | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Run clang-format style check for C programs. | ||
uses: DoozyX/[email protected] | ||
with: | ||
source: '.' | ||
extensions: 'c,h,cpp,hpp' | ||
clangFormatVersion: 10 | ||
style: file | ||
exclude: './config ./hl/src/H5LTanalyze.c ./hl/src/H5LTparse.c ./hl/src/H5LTparse.h ./src/H5Epubgen.h ./src/H5Einit.h ./src/H5Eterm.h ./src/H5Edefin.h ./src/H5version.h ./src/H5overflow.h' |
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,25 @@ | ||
name: clang-format Check | ||
on: | ||
workflow_dispatch: | ||
push: | ||
jobs: | ||
formatting-check: | ||
name: Formatting Check | ||
runs-on: ubuntu-latest | ||
if: "!contains(github.event.head_commit.message, 'skip-ci')" | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Run clang-format style check for C programs. | ||
uses: DoozyX/[email protected] | ||
with: | ||
source: '.' | ||
extensions: 'c,h,cpp,hpp' | ||
clangFormatVersion: 10 | ||
inplace: True | ||
style: file | ||
exclude: './config ./hl/src/H5LTanalyze.c ./hl/src/H5LTparse.c ./hl/src/H5LTparse.h ./src/H5Epubgen.h ./src/H5Einit.h ./src/H5Eterm.h ./src/H5Edefin.h ./src/H5version.h ./src/H5overflow.h' | ||
- uses: EndBug/add-and-commit@v7 | ||
with: | ||
author_name: github-actions | ||
author_email: 41898282+github-actions[bot]@users.noreply.github.com | ||
message: 'Committing clang-format changes' |
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.