generated from genyleap/Project-Template
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 805dd8b
Showing
83 changed files
with
9,862 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,47 @@ | ||
Language: Cpp | ||
AccessModifierOffset: -4 | ||
AlignAfterOpenBracket: true | ||
AlignEscapedNewlinesLeft: true | ||
AlignTrailingComments: true | ||
AllowAllParametersOfDeclarationOnNextLine: true | ||
AllowShortBlocksOnASingleLine: false | ||
AllowShortCaseLabelsOnASingleLine: true | ||
AllowShortFunctionsOnASingleLine: All | ||
AllowShortIfStatementsOnASingleLine: true | ||
AllowShortLoopsOnASingleLine: false | ||
AlwaysBreakBeforeMultilineStrings: false | ||
AlwaysBreakTemplateDeclarations: true | ||
BinPackArguments: true | ||
BinPackParameters: true | ||
BreakBeforeBinaryOperators: false | ||
BreakBeforeBraces: Custom | ||
BraceWrapping: | ||
AfterClass: true | ||
AfterFunction: true | ||
BreakBeforeTernaryOperators: false | ||
BreakConstructorInitializersBeforeComma: false | ||
ColumnLimit: 0 | ||
CommentPragmas: '^ IWYU pragma:' | ||
ConstructorInitializerAllOnOneLineOrOnePerLine: false | ||
ConstructorInitializerIndentWidth: 4 | ||
ContinuationIndentWidth: 4 | ||
Cpp11BracedListStyle: true | ||
DerivePointerAlignment: false | ||
DisableFormat: false | ||
IndentCaseLabels: false | ||
IndentFunctionDeclarationAfterType: false | ||
IndentWidth: 4 | ||
KeepEmptyLinesAtTheStartOfBlocks: false | ||
MaxEmptyLinesToKeep: 2 | ||
NamespaceIndentation: None | ||
PointerAlignment: Left | ||
SpaceBeforeAssignmentOperators: true | ||
SpaceBeforeParens: ControlStatements | ||
SpaceInEmptyParentheses: false | ||
SpacesBeforeTrailingComments: 1 | ||
SpacesInAngles: false | ||
SpacesInContainerLiterals: true | ||
SpacesInCStyleCastParentheses: false | ||
SpacesInParentheses: false | ||
Standard: c++17 | ||
UseTab: Never |
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,2 @@ | ||
Checks: '-*,bugprone-argument-comment' | ||
WarningsAsErrors: bugprone-argument-comment |
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,2 @@ | ||
# Auto detect text files and perform LF normalization | ||
* text=auto |
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,114 @@ | ||
--- | ||
# | ||
# - Run this workflow to pull changes from the template repository. | ||
# | ||
# - Clone this repository. Check out a branch | ||
# - Copy files from the template onto this clone | ||
# - Push the branch to this repository | ||
# - Create a pull request in this repository | ||
# | ||
|
||
name: Sync changes from template project. | ||
|
||
on: | ||
# cronjob trigger | ||
schedule: | ||
- cron: "17 5 * * 5" | ||
|
||
# Run when this file changes | ||
push: | ||
paths: | ||
- .github/workflows/sync-from-template.yml | ||
|
||
# Run when manually triggered | ||
workflow_dispatch: | ||
|
||
env: | ||
BASE_BRANCH: main | ||
HEAD_BRANCH: chore/sync-from-template | ||
GIT_AUTHOR_NAME: ${{ github.repository_owner }} | ||
GIT_AUTHOR_EMAIL: ${{ github.repository_owner }}@users.noreply.github.com | ||
REPO_TEMPLATE: KambizAsadzadeh/Project-Template | ||
THIS_REPO: ${{ github.repository }} | ||
|
||
jobs: | ||
sync-from-template: | ||
# Do not run on the template repository itself | ||
if: github.repository != 'KambizAsadzadeh/Project-Template' | ||
name: Sync changes from KambizAsadzadeh/Project-Template | ||
runs-on: ubuntu-latest | ||
continue-on-error: true | ||
|
||
steps: | ||
# Clone the template repository | ||
- name: Check out template repository | ||
uses: actions/checkout@v2 | ||
with: | ||
repository: ${{ env.REPO_TEMPLATE }} | ||
token: ${{ github.token }} | ||
path: ${{ env.REPO_TEMPLATE }} | ||
|
||
# Clone the target repository. Check out a branch | ||
- name: Check out ${{ github.repository }} | ||
uses: actions/checkout@v2 | ||
with: | ||
repository: ${{ github.repository }} | ||
token: ${{ github.token }} | ||
path: ${{ github.repository }} | ||
- name: Create branch in ${{ env.THIS_REPO }} | ||
run: | | ||
git -C "${THIS_REPO}" fetch origin "${HEAD_BRANCH}" || true | ||
git -C "${THIS_REPO}" branch -a | ||
git -C "${THIS_REPO}" checkout -B "${HEAD_BRANCH}" \ | ||
"remotes/origin/${HEAD_BRANCH}" || \ | ||
git -C "${THIS_REPO}" checkout -b "${HEAD_BRANCH}" | ||
# Copy files from the template onto the target clone | ||
- name: Copy template contents | ||
run: | | ||
_files="$(find ${REPO_TEMPLATE} \ | ||
! -path "*/.git/*" \ | ||
! -path "*/.github/workflows/*" \ | ||
! -name ".gitignore" \ | ||
! -name "README.md" \ | ||
-type f \ | ||
-print)" | ||
for _file in ${_files}; do | ||
_src="${_file}" | ||
_dst="${THIS_REPO}/${_file#${REPO_TEMPLATE}/}" | ||
# TODO: Find a more robust / elegant way to get this :point_down: | ||
_dst="${_dst%/*}/" | ||
mkdir -p "${_dst}" | ||
echo "INFO: Copy '${_src}' to '${_dst}'." | ||
cp "${_src}" "${_dst}" | ||
done | ||
git -C "${THIS_REPO}" diff | ||
# Commit changes, if there are any | ||
- name: Commit changes, if any | ||
run: | | ||
git -C ${THIS_REPO} config user.name "${GIT_AUTHOR_NAME}" | ||
git -C ${THIS_REPO} config \ | ||
user.email "${GIT_AUTHOR_EMAIL}" | ||
git -C ${THIS_REPO} add . | ||
git -C ${THIS_REPO} commit \ | ||
-m "Sync from template@${{ github.sha }}" | ||
# Push the branch to the target repository | ||
- name: Push topic branch | ||
run: git -C ${THIS_REPO} push -u origin "${HEAD_BRANCH}" | ||
|
||
# Create a pull request in the target repository | ||
- name: Create pull request | ||
env: | ||
GITHUB_TOKEN: ${{ github.token }} | ||
GITHUB_USER: ${{ github.actor }} | ||
run: | | ||
pushd ${THIS_REPO} | ||
hub pull-request \ | ||
-b "${BASE_BRANCH}" \ | ||
-h "${HEAD_BRANCH}" \ | ||
--no-edit \ | ||
-m "Pull updates from ${REPO_TEMPLATE}" \ | ||
-m "Pull updates from ${REPO_TEMPLATE}" | ||
popd |
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,38 @@ | ||
# Prerequisites | ||
*.d | ||
|
||
# Compiled Object files | ||
*.slo | ||
*.lo | ||
*.o | ||
*.obj | ||
|
||
# Precompiled Headers | ||
*.gch | ||
*.pch | ||
|
||
# Compiled Dynamic libraries | ||
*.so | ||
*.dylib | ||
*.dll | ||
|
||
# Fortran module files | ||
*.mod | ||
*.smod | ||
|
||
# Compiled Static libraries | ||
*.lai | ||
*.la | ||
*.a | ||
*.lib | ||
|
||
# Executables | ||
*.exe | ||
*.out | ||
*.app | ||
|
||
#Extra | ||
.DS_Store | ||
|
||
# Final Output | ||
build/ProjectTemplate |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
cff-version: 1.2.0 | ||
message: "If you use this software, please cite it as below." | ||
authors: | ||
- family-names: "Asadzadeh" | ||
given-names: "Kambiz" | ||
orcid: "https://orcid.org/0009-0009-2065-3977" | ||
title: "PT" | ||
version: 1.1.222 | ||
date-released: 2023-04-25 | ||
url: "https://kambizasadzadeh.com" | ||
repository-code: "https://github.com/genyleap/Project-Template" |
Oops, something went wrong.