-
Notifications
You must be signed in to change notification settings - Fork 1
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 simatic-ax/chore/update_sdk_to_version_2405
Chore/update sdk to version 2405
- Loading branch information
Showing
15 changed files
with
251 additions
and
27 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,3 @@ | ||
# `.gitattributes` reclassify `.st` files as iec-st: | ||
** linguist-vendored | ||
# *.ppjs linguist-language=ST |
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,4 @@ | ||
on: push | ||
jobs: | ||
lint-repo-and-markdown: | ||
uses: simatic-ax/actions/.github/workflows/check-repository.yml@stable |
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 @@ | ||
on: | ||
push: | ||
# Pattern matched against refs/tags | ||
tags: | ||
- "*" | ||
|
||
jobs: | ||
release-apax-lib: | ||
uses: simatic-ax/actions/.github/workflows/apax-publish-applicationexample.yml@stable | ||
secrets: | ||
APAX_TOKEN: ${{ secrets.APAX_TOKEN }} | ||
DEPLOY_KEY: ${{ secrets.DEPLOY_KEY }} | ||
|
||
with: | ||
VERSION: ${{ github.ref_name }} | ||
PROJECT_NAME: ae-hw-engineering |
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 @@ | ||
# markdownlint YAML configuration | ||
--- | ||
|
||
# Default state for all rules | ||
default: true | ||
|
||
# ignored rules | ||
line-length: false | ||
no-inline-html: false | ||
first-line-h1: false | ||
no-emphasis-as-header: 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,4 @@ | ||
# These owners will be the default owners for everything in the repo. | ||
# Unless a later match takes precedence, the listed user will be | ||
# requested for review when someone opens a pull request. | ||
* @ingoeichner @ReinerSchinkoethe |
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,13 @@ | ||
# this files section will be used for the github workflow | ||
# the apax.yml will be created dynamically in the workflow - also the files section | ||
# here you can define the content | ||
|
||
files: | ||
- template | ||
- '!**/.git' | ||
- '!**/.vscode' | ||
- '!**/.github' | ||
- '!**/.gitattributes' | ||
- '!**/.markdownlint.yml' | ||
- '!template/CODEOWNERS' | ||
- '!template/apax-files-section.yml' |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
In the checked-in project status, the “hw_setup_security” command has already been executed for initialization. |
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,158 @@ | ||
{ | ||
"$schema": "./schema.json", | ||
"version": 2, | ||
"axioms": { | ||
"linguist": "language", | ||
"licensee": "license", | ||
"packagers": "packager" | ||
}, | ||
"rules": { | ||
"license-file-exists": { | ||
"level": "error", | ||
"rule": { | ||
"type": "file-existence", | ||
"options": { | ||
"globsAny": [ "LICENSE.md" ], | ||
"nocase": true | ||
} | ||
} | ||
}, | ||
"readme-file-exists": { | ||
"level": "error", | ||
"rule": { | ||
"type": "file-existence", | ||
"options": { | ||
"globsAny": [ "README*.md" ], | ||
"nocase": true | ||
} | ||
} | ||
}, | ||
"readme-references-license": { | ||
"level": "error", | ||
"rule": { | ||
"type": "file-contents", | ||
"options": { | ||
"globsAll": [ "README*" ], | ||
"content": "license", | ||
"flags": "i" | ||
} | ||
} | ||
}, | ||
"binaries-not-present": { | ||
"level": "warning", | ||
"rule": { | ||
"type": "file-type-exclusion", | ||
"options": { | ||
"type": [ "**/*.exe", "**/*.dll", "!node_modules/**" ] | ||
} | ||
} | ||
}, | ||
"test-directory-exists": { | ||
"level": "warning", | ||
"rule": { | ||
"type": "directory-existence", | ||
"options": { | ||
"globsAny": [ "**/test*" ], | ||
"nocase": true | ||
} | ||
} | ||
}, | ||
"source-directory-exists": { | ||
"level": "warning", | ||
"rule": { | ||
"type": "directory-existence", | ||
"options": { | ||
"globsAny": [ "**/src*" ], | ||
"nocase": true | ||
} | ||
} | ||
}, | ||
"additional-docs-directory-exists": { | ||
"level": "warning", | ||
"rule": { | ||
"type": "directory-existence", | ||
"options": { | ||
"globsAny": [ "**/docs*" ], | ||
"nocase": true | ||
} | ||
} | ||
}, | ||
"integrates-with-ci": { | ||
"level": "error", | ||
"rule": { | ||
"type": "file-existence", | ||
"options": { | ||
"globsAny": [ | ||
".github/workflows/*" | ||
] | ||
} | ||
} | ||
}, | ||
"markdownlint-config-exit": { | ||
"level": "error", | ||
"rule": { | ||
"type": "file-existence", | ||
"options": { | ||
"globsAny": [ | ||
".markdownlint.yml" | ||
] | ||
} | ||
} | ||
}, | ||
"apax-yml-exit": { | ||
"level": "error", | ||
"rule": { | ||
"type": "file-existence", | ||
"options": { | ||
"globsAny": [ | ||
"apax.yml" | ||
] | ||
} | ||
} | ||
}, | ||
"gitignore-exit": { | ||
"level": "error", | ||
"rule": { | ||
"type": "file-existence", | ||
"options": { | ||
"globsAny": [ | ||
".gitignore" | ||
] | ||
} | ||
} | ||
}, | ||
"gitattributes-exit": { | ||
"level": "error", | ||
"rule": { | ||
"type": "file-existence", | ||
"options": { | ||
"globsAny": [ | ||
".gitattributes" | ||
] | ||
} | ||
} | ||
}, | ||
"apax-files-section-exit": { | ||
"level": "error", | ||
"rule": { | ||
"type": "file-existence", | ||
"options": { | ||
"globsAny": [ | ||
"apax-files-section.yml" | ||
] | ||
} | ||
} | ||
}, | ||
"CODEOWNERS-exit": { | ||
"level": "error", | ||
"rule": { | ||
"type": "file-existence", | ||
"options": { | ||
"globsAny": [ | ||
"CODEOWNERS" | ||
] | ||
} | ||
} | ||
} | ||
} | ||
} |
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
File renamed without 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
et200sp1_device_dq8_OutputAddress | ||
et200sp2_device_dq8_OutputAddress | ||
set_output |