-
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.
* updates to @ax-sdk2405.0.0 * update cake to emit ax cat libs * The most important changes involve a modification in the criteria for a process passing in the `ApaxCmd` class and a renaming of a library in the `BuildContext` class. 1. **Modification in Process Passing Criteria in `ApaxCmd` Class**: The condition to determine if a process has passed has been updated. Instead of checking for the string "OVERALLRESULT[PASSED]" in the output, the new condition checks for "FAILED:0". This implies that a process is considered successful if there are no failures reported in the output. This change could significantly affect how process outcomes are determined, potentially making the criteria for passing more straightforward or aligned with how results are reported. (File: `ApaxCmd.cs`) 2. **Renaming of Library in `BuildContext` Class**: A library previously known as "ax.axopen.hwlib" has been renamed to "ax.axopen.hwlibrary". This change is limited to the renaming of the library without affecting its packaging status, indicating a possible rebranding or standardization of library names without altering its inclusion in builds or packages. (File: `BuildContext.cs`) * asp * The most significant changes involve adjustments to the build and packaging process, specifically adding a condition for packaging in the build process, removing unnecessary code, and enhancing logging for better visibility of the build flow. These changes aim to improve the flexibility and maintainability of the codebase. 1. **Packaging Condition Added to Test and Build Process**: A new conditional check has been introduced in the `TestsTask` class to determine whether packaging steps should be executed based on the `DoPack` parameter. This allows for more flexible build configurations by only including packaging steps when necessary. [Reference: TestsTask class, conditional check for `context.BuildParameters.DoPack`] 2. **Removed Unnecessary Closing Bracket**: An extraneous closing bracket has been removed, likely fixing a syntax error or improving code readability. This minor change contributes to cleaner and more maintainable code. [Reference: Removal of unnecessary closing bracket after exception throw statement] 3. **Commented Out Code in CreateArtifactsTask**: Sections of code in the `CreateArtifactsTask` class have been commented out, including a block that changes build properties for Apax files and the call to `PackApax(context);`. This indicates a possible shift in packaging strategy or a temporary measure for debugging or refactoring. [Reference: Commented out code in `CreateArtifactsTask` class] 4. **Warning for Skipping Packaging**: A warning has been added to the build process to notify when the packaging step is skipped due to the `DoPack` parameter being false. This enhances the transparency of the build process by making it clear when certain steps are omitted based on build parameters. [Reference: Warning log addition for skipped packaging process]
- Loading branch information
Showing
45 changed files
with
119 additions
and
134 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
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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
name: "@ix-ax/ax.axopen.app" | ||
version: '0.0.0-dev.0' | ||
type: generic | ||
files: | ||
- apax.yml | ||
devDependencies: | ||
"@ix-ax/ax-sdk": '0.0.0-dev.0' | ||
dependencies: | ||
"@ix-ax/ax.axopen.min": '0.0.0-dev.0' | ||
"@ax/simatic-1500-clocks": ^7.0.4 | ||
"@ax/system-bitaccess": ^7.0.17 | ||
"@ax/system-math": ^7.0.17 | ||
"@ax/system-serde": ^7.0.17 | ||
installStrategy: strict | ||
apaxVersion: 3.1.1 |
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,17 @@ | ||
name: "@ix-ax/ax.axopen.hwlibrary" | ||
version: '0.0.0-dev.0' | ||
type: generic | ||
files: | ||
- apax.yml | ||
devDependencies: | ||
"@ix-ax/ax-sdk": '0.0.0-dev.0' | ||
dependencies: | ||
"@ix-ax/ax.axopen.min": '0.0.0-dev.0' | ||
"@ax/simatic-1500-distributedio": ^7.0.1 | ||
"@ax/simatic-1500-diagnostics-hardware": ^7.0.1 | ||
"@ax/simatic-1500-clocks": ^7.0.4 | ||
"@ax/system-timer": ^7.0.17 | ||
"@ax/system-serde": ^7.0.17 | ||
"@ax/system-bitaccess": ^7.0.17 | ||
installStrategy: strict | ||
apaxVersion: 3.1.1 |
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 @@ | ||
name: "@ix-ax/ax.axopen.min" | ||
version: '0.0.0-dev.0' | ||
type: generic | ||
files: | ||
- apax.yml | ||
devDependencies: | ||
"@ix-ax/ax-sdk": '0.0.0-dev.0' | ||
dependencies: | ||
"@ax/system-strings": ^7.0.17 | ||
installStrategy: strict | ||
apaxVersion: 3.1.1 |
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
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
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
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
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
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
Oops, something went wrong.