-
-
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.
- Loading branch information
Showing
234 changed files
with
2,346 additions
and
1,934 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,40 @@ | ||
name: CI | ||
|
||
on: | ||
workflow_call: | ||
secrets: | ||
GH_TOKEN: | ||
required: true | ||
GH_PAT: | ||
required: true | ||
CODECOV_TOKEN: | ||
required: true | ||
|
||
jobs: | ||
codestyle-tests: | ||
runs-on: ubuntu-latest | ||
if: "!contains(github.event.head_commit.message, 'NO_CI')" | ||
steps: | ||
- name: Checkout Repository | ||
uses: actions/checkout@main | ||
with: | ||
fetch-depth: 0 | ||
submodules: recursive | ||
token: ${{ secrets.GH_TOKEN }} | ||
- name: Checkout Build Repository | ||
uses: actions/checkout@main | ||
with: | ||
fetch-depth: 1 | ||
ref: develop | ||
repository: Karaka-Management/Build | ||
path: Build | ||
- name: Copy config file | ||
run: | | ||
cp ./Build/Config/.clang-format ./.clang-format | ||
- name: Lint Code Base | ||
uses: super-linter/[email protected] | ||
env: | ||
VALIDATE_ALL_CODEBASE: false | ||
VALIDATE_CLANG_FORMAT : true | ||
DEFAULT_BRANCH: develop | ||
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} |
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,74 @@ | ||
name: CI | ||
|
||
on: | ||
workflow_call: | ||
secrets: | ||
GH_TOKEN: | ||
required: true | ||
GH_PAT: | ||
required: true | ||
CODECOV_TOKEN: | ||
required: true | ||
|
||
jobs: | ||
codestyle-tests: | ||
runs-on: ubuntu-latest | ||
if: "!contains(github.event.head_commit.message, 'NO_CI')" | ||
steps: | ||
- name: Checkout Repository | ||
uses: actions/checkout@main | ||
with: | ||
fetch-depth: 1 | ||
- name: Checkout Build Repository | ||
uses: actions/checkout@main | ||
with: | ||
fetch-depth: 1 | ||
ref: develop | ||
repository: Karaka-Management/Build | ||
path: Build | ||
- name: Install NPM | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: '14' | ||
cache: 'npm' | ||
- run: npm install | ||
- name: eslint | ||
run: npx eslint ./ -c Build/Config/.eslintrc.json --fix | ||
- name: Check for modified files | ||
if: always() | ||
id: git-format-check | ||
run: echo "modified=$(if git diff-index -G --quiet HEAD --; then echo "false"; else echo "true"; fi)" >> $GITHUB_OUTPUT | ||
- name: Push changes | ||
if: steps.git-format-check.outputs.modified == 'true' | ||
run: | | ||
git config --global user.name 'Formatter Bot' | ||
git config --global user.email '[email protected]' | ||
git remote set-url origin https://x-access-token:${{ secrets.GH_TOKEN }}@github.com/${{ github.repository }} | ||
git commit -am "Automated formatting changes (NO_CI)" | ||
git push | ||
code-tests: | ||
runs-on: ubuntu-latest | ||
if: "!contains(github.event.head_commit.message, 'NO_CI')" | ||
steps: | ||
- name: Checkout Repository | ||
uses: actions/checkout@main | ||
with: | ||
fetch-depth: 1 | ||
- name: Checkout Build Repository | ||
uses: actions/checkout@main | ||
with: | ||
fetch-depth: 1 | ||
ref: develop | ||
repository: Karaka-Management/Build | ||
path: Build | ||
- name: Install NPM | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: '14' | ||
cache: 'npm' | ||
- run: npm install | ||
- name: jasmine | ||
run: | | ||
chmod +x Build/Config/jasmine_build.sh | ||
Build/Config/jasmine_build.sh | ||
npx jasmine --config=Build/Config/jasmine.json |
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
Submodule Build
updated
26 files
+1 −1 | Backup/cron.sh | |
+27 −13 | Backup/local.sh | |
+0 −3 | Config/.clang-format | |
+10 −0 | Config/jasmine.json | |
+13 −0 | Config/jasmine_build.sh | |
+0 −251 | Config/snippets.code-snippets | |
+3 −3 | Helper/Php/createPhpFromJsonDb.php | |
+1 −1 | Helper/Php/findMissingAdminTest.php | |
+1 −1 | Helper/Php/findMissingApiFunctions.php | |
+1 −1 | Helper/Php/findMissingInvalidApiControllerTest.php | |
+2 −2 | Helper/Php/findMissingNullModelTest.php | |
+1 −1 | Helper/Php/langUsageInspector.php | |
+1 −1 | Helper/Php/reconcileTestReportElements.php | |
+13 −13 | Helper/Scripts/release.sh | |
+644 −0 | Helper/Scripts/screenshots.js | |
+0 −0 | ICLA.txt | |
+0 −10 | Js/build.sh | |
+0 −0 | Js/build3D.sh | |
+0 −0 | Js/buildBase.sh | |
+0 −27 | Js/buildChart.sh | |
+0 −11 | Js/buildLib.sh | |
+0 −10 | Js/buildMath.sh | |
+0 −0 | Js/buildSocket.sh | |
+0 −0 | Js/buildUI.sh | |
+4 −0 | LICENSE.txt | |
+1 −1 | README.md |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
/** | ||
* Jingga | ||
* | ||
* PHP Version 8.1 | ||
* PHP Version 8.2 | ||
* | ||
* @package Cli | ||
* @copyright Dennis Eichhorn | ||
|
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
/** | ||
* Jingga | ||
* | ||
* PHP Version 8.1 | ||
* PHP Version 8.2 | ||
* | ||
* @package Cli | ||
* @copyright Dennis Eichhorn | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
/** | ||
* Jingga | ||
* | ||
* PHP Version 8.1 | ||
* PHP Version 8.2 | ||
* | ||
* @package Cli | ||
* @copyright Dennis Eichhorn | ||
|
Submodule Developer-Guide
updated
14 files
+0 −0 | ICLA.txt | |
+0 −8 | SUMMARY.md | |
+2 −2 | application/concepts/tables.md | |
+1 −1 | general/first_steps.md | |
+9 −8 | general/setup.md | |
+1 −1 | phpOMS/basics/language_files.md | |
+1 −1 | phpOMS/basics/views.md | |
+1 −1 | phpOMS/datastorage/cache.md | |
+1 −1 | phpOMS/datastorage/session.md | |
+2 −2 | phpOMS/services/localization.md | |
+62 −22 | quality/inspections.md | |
+1 −1 | standards/cpp.md | |
+2 −2 | standards/documentation.md | |
+1 −1 | standards/general.md |
File renamed without changes.
Oops, something went wrong.