Skip to content

Commit

Permalink
updates to @ax-sdk2405.0.0 (#409)
Browse files Browse the repository at this point in the history
* 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
PTKu authored Jun 21, 2024
1 parent 8f0dd4f commit 3c23453
Show file tree
Hide file tree
Showing 45 changed files with 119 additions and 134 deletions.
2 changes: 1 addition & 1 deletion cake/ApaxCmd.cs
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ public static void ApaxTestLibrary(this BuildContext context, (string folder, st
var passed = false;
foreach (var o in process.GetStandardOutput())
{
if (o.Trim().Replace(" ", "").ToUpper() == "OVERALLRESULT[PASSED]")
if (o.Trim().Replace(" ", "").ToUpper() == "FAILED:0")
{
passed = true;
}
Expand Down
3 changes: 3 additions & 0 deletions cake/BuildContext.cs
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,9 @@ public BuildContext(ICakeContext context, BuildParameters buildParameters)
#region Libraries
public IEnumerable<(string folder, string name, bool pack)> Libraries { get; } = new[]
{
("ax.axopen.min", "ax.axopen.min", true),
("ax.axopen.hwlibrary", "ax.axopen.hwlibrary", true),
("ax.axopen.app", "ax.axopen.app", true),
("sdk-ax", "ax-sdk", true),
("abstractions", "axopen.abstractions", true),
("timers", "axopen.timers", true),
Expand Down
30 changes: 21 additions & 9 deletions cake/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -199,6 +199,12 @@ public override void Run(BuildContext context)
context.ApaxInstall(context.GetLibraryAxFolders(lib));
context.ApaxBuild(context.GetLibraryAxFolders(lib));
context.ApaxTestLibrary(lib);
if (context.BuildParameters.DoPack)
{
context.ApaxPack(lib);
context.ApaxCopyArtifacts(lib);
}
context.ApaxClean(lib);
});

}
Expand All @@ -209,6 +215,12 @@ public override void Run(BuildContext context)
context.ApaxInstall(context.GetLibraryAxFolders(lib));
context.ApaxBuild(context.GetLibraryAxFolders(lib));
context.ApaxTestLibrary(lib);
if (context.BuildParameters.DoPack)
{
context.ApaxPack(lib);
context.ApaxCopyArtifacts(lib);
}
context.ApaxClean(lib);
});
}

Expand Down Expand Up @@ -242,7 +254,7 @@ public override void Run(BuildContext context)
else
{
throw new Exception($"No app or ax folder found for {package.folder}");
}
}

context.DotNetTest(Path.Combine(context.RootDir, package.folder, "tmp_L3_.proj"), context.DotNetTestSettings);
}
Expand All @@ -260,13 +272,13 @@ public override void Run(BuildContext context)
{
if (context.BuildParameters.DoPack)
{
context.Libraries.ToList().ForEach(lib =>
{
foreach (var apaxfile in context.GetApaxFiles(lib))
{
context.ApaxChangeBuildProperties(apaxfile, new string[] { "\"1500\"", "llvm", "plcsim" }, new[] { "bin", "axsharp.companion.json" });
}
});
//context.Libraries.ToList().ForEach(lib =>
//{
// foreach (var apaxfile in context.GetApaxFiles(lib))
// {
// context.ApaxChangeBuildProperties(apaxfile, new string[] { "\"1500\"", "llvm", "plcsim" }, new[] { "bin", "axsharp.companion.json" });
// }
//});
}

if (!context.BuildParameters.DoPack)
Expand All @@ -275,7 +287,7 @@ public override void Run(BuildContext context)
return;
}

PackApax(context);
//PackApax(context);
PackNugets(context);
}

Expand Down
2 changes: 1 addition & 1 deletion src/abstractions/ctrl/apax.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ files:
devDependencies:
"@ix-ax/ax-sdk": '0.0.0-dev.0'
dependencies:
"@ax/system-strings": ^6.0.94
"@ix-ax/ax.axopen.min": '0.0.0-dev.0'
scripts:
postbuild:
- dotnet ixc
Expand Down
15 changes: 15 additions & 0 deletions src/ax.axopen.app/ctrl/apax.yml
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
17 changes: 17 additions & 0 deletions src/ax.axopen.hwlibrary/ctrl/apax.yml
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
11 changes: 11 additions & 0 deletions src/ax.axopen.min/ctrl/apax.yml
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
2 changes: 1 addition & 1 deletion src/components.abb.robotics/app/apax.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ dependencies:
"@ix-ax/axopen.abstractions": '0.0.0-dev.0'
"@ix-ax/axopen.components.abb.robotics": '0.0.0-dev.0'
"@ix-ax/axopen.simatic1500": '0.0.0-dev.0'
"@ax/simatic-1500-clocks": ^6.0.37
"@ix-ax/ax.axopen.app": '0.0.0-dev.0'
scripts:
# Obsolete scripts, could be removed at some point ====>
delta:
Expand Down
3 changes: 1 addition & 2 deletions src/components.abb.robotics/ctrl/apax.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,7 @@ dependencies:
"@ix-ax/axopen.abstractions": '0.0.0-dev.0'
"@ix-ax/axopen.components.robotics": '0.0.0-dev.0'
"@ix-ax/axopen.io": '0.0.0-dev.0'
"@ax/simatic-1500-distributedio": ^6.0.3
"@ax/simatic-1500-diagnostics-hardware": ^6.0.1
"@ix-ax/ax.axopen.hwlibrary": '0.0.0-dev.0'
publicKeys:
"@ix-ax": 30c06ef7830b4dfd8f16e003508da1ac2d187714d0e1f38279a9332cbe4e4e17
installStrategy: strict
Expand Down
6 changes: 1 addition & 5 deletions src/components.balluff.identification/app/apax.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,7 @@ dependencies:
"@ix-ax/axopen.abstractions": '0.0.0-dev.0'
"@ix-ax/axopen.components.balluff.identification": '0.0.0-dev.0'
"@ix-ax/axopen.simatic1500": '0.0.0-dev.0'
"@ax/simatic-1500-clocks": ^6.0.37
"@ax/system-strings": ^6.0.94
"@ax/system-bitaccess": ^6.0.94
"@ax/system-math": ^6.0.94
"@ax/system-serde": ^6.0.94
"@ix-ax/ax.axopen.app": '0.0.0-dev.0'
scripts:
# Obsolete scripts, could be removed at some point ====>
delta:
Expand Down
4 changes: 1 addition & 3 deletions src/components.balluff.identification/ctrl/apax.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,7 @@ dependencies:
"@ix-ax/axopen.timers": '0.0.0-dev.0'
"@ix-ax/axopen.abstractions": '0.0.0-dev.0'
"@ix-ax/axopen.io": '0.0.0-dev.0'
"@ax/simatic-1500-distributedio": ^6.0.3
"@ax/simatic-1500-diagnostics-hardware": ^6.0.1
"@ax/system-serde": ^6.0.94
"@ix-ax/ax.axopen.hwlibrary": '0.0.0-dev.0'
publicKeys:
"@ix-ax": 30c06ef7830b4dfd8f16e003508da1ac2d187714d0e1f38279a9332cbe4e4e17
installStrategy: strict
Expand Down
3 changes: 1 addition & 2 deletions src/components.cognex.vision/app/apax.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,7 @@ devDependencies:
dependencies:
"@ix-ax/axopen.components.cognex.vision": '0.0.0-dev.0'
"@ix-ax/axopen.simatic1500": '0.0.0-dev.0'
"@ax/simatic-1500-clocks": ^6.0.37
"@ax/system-timer": ^6.0.94
"@ix-ax/ax.axopen.app": '0.0.0-dev.0'
scripts:
# Obsolete scripts, could be removed at some point ====>
delta:
Expand Down
5 changes: 1 addition & 4 deletions src/components.cognex.vision/ctrl/apax.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,8 @@ scripts:
dependencies:
"@ix-ax/axopen.components.abstractions": '0.0.0-dev.0'
"@ix-ax/axopen.utils": '0.0.0-dev.0'
"@ax/system-serde": ^6.0.94
# "@ax/system-strings": ^6.0.94
"@ix-ax/axopen.io": '0.0.0-dev.0'
"@ax/simatic-1500-distributedio": ^6.0.3
"@ax/simatic-1500-diagnostics-hardware": ^6.0.1

publicKeys:
"@ix-ax": 30c06ef7830b4dfd8f16e003508da1ac2d187714d0e1f38279a9332cbe4e4e17
installStrategy: strict
Expand Down
2 changes: 1 addition & 1 deletion src/components.desoutter.tightening/app/apax.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ dependencies:
"@ix-ax/axopen.abstractions": '0.0.0-dev.0'
"@ix-ax/axopen.components.desoutter.tightening": '0.0.0-dev.0'
"@ix-ax/axopen.simatic1500": '0.0.0-dev.0'
"@ax/simatic-1500-clocks": ^6.0.37
"@ix-ax/ax.axopen.app": '0.0.0-dev.0'
scripts:
# Obsolete scripts, could be removed at some point ====>
delta:
Expand Down
7 changes: 1 addition & 6 deletions src/components.desoutter.tightening/ctrl/apax.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,8 @@ dependencies:
"@ix-ax/axopen.core": '0.0.0-dev.0'
"@ix-ax/axopen.timers": '0.0.0-dev.0'
"@ix-ax/axopen.abstractions": '0.0.0-dev.0'
"@ax/system-bitaccess": ^6.0.94
"@ax/simatic-1500-clocks": ^6.0.37
"@ax/simatic-1500-distributedio": ^6.0.3
"@ax/simatic-1500-diagnostics-hardware": ^6.0.1
"@ax/system-strings": ^6.0.94
"@ix-ax/ax.axopen.hwlibrary": '0.0.0-dev.0'
"@ix-ax/axopen.io": '0.0.0-dev.0'
"@ax/system-serde": ^6.0.94
publicKeys:
"@ix-ax": 30c06ef7830b4dfd8f16e003508da1ac2d187714d0e1f38279a9332cbe4e4e17
installStrategy: strict
Expand Down
13 changes: 2 additions & 11 deletions src/components.festo.drives/app/apax.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,20 +9,11 @@ variables:
- "--debug" # Generate debug information for target "1500"
PLC_NAME: "plc_line"
devDependencies:
"@ix-ax/ax-sdk": '0.0.0-dev.0'
"@ax/hwc": ^0.13.375
"@ax/hwld": ^0.9.479
"@ax/dcp-utility": ^1.1.2
"@ax/hardware-diagnostics": ^0.1.0
"@ax/certificate-management": ^1.1.1
"@ax/plc-info": ^2.3.0
"@ix-ax/ax-sdk": '0.0.0-dev.0'
dependencies:
"@ix-ax/axopen.components.festo.drives": '0.0.0-dev.0'
"@ix-ax/axopen.simatic1500": '0.0.0-dev.0'
"@ax/system-bitaccess": ^6.0.94
"@ax/simatic-1500-clocks": ^6.0.37
"@ax/simatic-1500-distributedio": ^6.0.3
"@ax/system-timer": ^6.0.94
"@ix-ax/ax.axopen.app": '0.0.0-dev.0'
scripts:
# Obsolete scripts, could be removed at some point ====>
delta:
Expand Down
6 changes: 1 addition & 5 deletions src/components.festo.drives/ctrl/apax.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,7 @@ scripts:
- dotnet ixc
dependencies:
"@ix-ax/axopen.components.drives": '0.0.0-dev.0'
"@ax/system-bitaccess": ^6.0.94
"@ax/simatic-1500-clocks": ^6.0.37
"@ax/simatic-1500-distributedio": ^6.0.3
"@ax/simatic-1500-diagnostics-hardware": ^6.0.1
"@ax/system-strings": ^6.0.94
"@ix-ax/ax.axopen.hwlibrary": '0.0.0-dev.0'
"@ix-ax/axopen.io": '0.0.0-dev.0'
publicKeys:
"@ix-ax": 30c06ef7830b4dfd8f16e003508da1ac2d187714d0e1f38279a9332cbe4e4e17
Expand Down
2 changes: 1 addition & 1 deletion src/components.kuka.robotics/app/apax.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ dependencies:
"@ix-ax/axopen.abstractions": '0.0.0-dev.0'
"@ix-ax/axopen.components.kuka.robotics": '0.0.0-dev.0'
"@ix-ax/axopen.simatic1500": '0.0.0-dev.0'
"@ax/simatic-1500-clocks": ^6.0.37
"@ix-ax/ax.axopen.app": '0.0.0-dev.0'
scripts:
# Obsolete scripts, could be removed at some point ====>
delta:
Expand Down
3 changes: 1 addition & 2 deletions src/components.kuka.robotics/ctrl/apax.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,7 @@ dependencies:
"@ix-ax/axopen.abstractions": '0.0.0-dev.0'
"@ix-ax/axopen.components.robotics": '0.0.0-dev.0'
"@ix-ax/axopen.io": '0.0.0-dev.0'
"@ax/simatic-1500-distributedio": ^6.0.3
"@ax/simatic-1500-diagnostics-hardware": ^6.0.1
"@ix-ax/ax.axopen.hwlibrary": '0.0.0-dev.0'
publicKeys:
"@ix-ax": 30c06ef7830b4dfd8f16e003508da1ac2d187714d0e1f38279a9332cbe4e4e17
installStrategy: strict
Expand Down
3 changes: 1 addition & 2 deletions src/components.mitsubishi.robotics/app/apax.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,7 @@ dependencies:
"@ix-ax/axopen.abstractions": '0.0.0-dev.0'
"@ix-ax/axopen.components.mitsubishi.robotics": '0.0.0-dev.0'
"@ix-ax/axopen.simatic1500": '0.0.0-dev.0'
"@ax/simatic-1500-clocks": ^6.0.37
"@ax/simatic-1500-distributedio": ^6.0.3
"@ix-ax/ax.axopen.app": '0.0.0-dev.0'
scripts:
# Obsolete scripts, could be removed at some point ====>
delta:
Expand Down
3 changes: 1 addition & 2 deletions src/components.mitsubishi.robotics/ctrl/apax.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,7 @@ dependencies:
"@ix-ax/axopen.timers": '0.0.0-dev.0'
"@ix-ax/axopen.abstractions": '0.0.0-dev.0'
"@ix-ax/axopen.io": '0.0.0-dev.0'
"@ax/simatic-1500-distributedio": ^6.0.3
"@ax/simatic-1500-diagnostics-hardware": ^6.0.1
"@ix-ax/ax.axopen.hwlibrary": '0.0.0-dev.0'
publicKeys:
"@ix-ax": 30c06ef7830b4dfd8f16e003508da1ac2d187714d0e1f38279a9332cbe4e4e17
installStrategy: strict
Expand Down
2 changes: 1 addition & 1 deletion src/components.rexroth.drives/app/apax.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ devDependencies:
dependencies:
"@ix-ax/axopen.simatic1500": '0.0.0-dev.0'
"@ix-ax/axopen.components.rexroth.drives": '0.0.0-dev.0'
"@ax/system-timer": ^6.0.94
"@ix-ax/ax.axopen.app": '0.0.0-dev.0'
scripts:
# Obsolete scripts, could be removed at some point ====>
delta:
Expand Down
6 changes: 1 addition & 5 deletions src/components.rexroth.drives/ctrl/apax.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,11 +65,7 @@ dependencies:
"@ix-ax/axopen.components.abstractions": '0.0.0-dev.0'
"@ix-ax/axopen.components.drives": '0.0.0-dev.0'
"@ix-ax/axopen.io": '0.0.0-dev.0'
"@ax/system-bitaccess": ^6.0.94
"@ax/system-math": ^6.0.94
"@ax/system-strings": ^6.0.94
"@ax/simatic-1500-distributedio": ^6.0.3
"@ax/simatic-1500-diagnostics-hardware": ^6.0.1
"@ix-ax/ax.axopen.hwlibrary": '0.0.0-dev.0'
installStrategy: strict
apaxVersion: 3.1.1
...
2 changes: 1 addition & 1 deletion src/components.rexroth.press/app/apax.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ dependencies:
"@ix-ax/axopen.abstractions": '0.0.0-dev.0'
"@ix-ax/axopen.components.rexroth.press": '0.0.0-dev.0'
"@ix-ax/axopen.simatic1500": '0.0.0-dev.0'
"@ax/simatic-1500-clocks": ^6.0.37
"@ix-ax/ax.axopen.app": '0.0.0-dev.0'
scripts:
# Obsolete scripts, could be removed at some point ====>
delta:
Expand Down
4 changes: 1 addition & 3 deletions src/components.rexroth.press/ctrl/apax.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,7 @@ dependencies:
"@ix-ax/axopen.timers": '0.0.0-dev.0'
"@ix-ax/axopen.abstractions": '0.0.0-dev.0'
"@ix-ax/axopen.io": '0.0.0-dev.0'
"@ax/system-serde": ^6.0.94
"@ax/simatic-1500-distributedio": ^6.0.3
"@ax/simatic-1500-diagnostics-hardware": ^6.0.1
"@ix-ax/ax.axopen.hwlibrary": '0.0.0-dev.0'
publicKeys:
"@ix-ax": 30c06ef7830b4dfd8f16e003508da1ac2d187714d0e1f38279a9332cbe4e4e17
installStrategy: strict
Expand Down
2 changes: 1 addition & 1 deletion src/components.robotics/app/apax.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ dependencies:
"@ix-ax/axopen.abstractions": '0.0.0-dev.0'
"@ix-ax/axopen.components.robotics": '0.0.0-dev.0'
"@ix-ax/axopen.simatic1500": '0.0.0-dev.0'
"@ax/simatic-1500-clocks": ^6.0.37
"@ix-ax/ax.axopen.app": '0.0.0-dev.0'
scripts:
# Obsolete scripts, could be removed at some point ====>
download:
Expand Down
2 changes: 1 addition & 1 deletion src/components.robotics/ctrl/apax.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ dependencies:
"@ix-ax/axopen.core": '0.0.0-dev.0'
"@ix-ax/axopen.timers": '0.0.0-dev.0'
"@ix-ax/axopen.abstractions": '0.0.0-dev.0'
"@ax/system-math": ^6.0.94
"@ix-ax/ax.axopen.hwlibrary": '0.0.0-dev.0'
publicKeys:
"@ix-ax": 30c06ef7830b4dfd8f16e003508da1ac2d187714d0e1f38279a9332cbe4e4e17
installStrategy: strict
Expand Down
3 changes: 1 addition & 2 deletions src/components.siemens.identification/app/apax.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,7 @@ dependencies:
"@ix-ax/axopen.abstractions": '0.0.0-dev.0'
"@ix-ax/axopen.components.siemens.identification": '0.0.0-dev.0'
"@ix-ax/axopen.simatic1500": '0.0.0-dev.0'
"@ax/simatic-1500-clocks": ^6.0.37
"@ax/system-serde": ^6.0.94
"@ix-ax/ax.axopen.app": '0.0.0-dev.0'
scripts:
# Obsolete scripts, could be removed at some point ====>
delta:
Expand Down
5 changes: 1 addition & 4 deletions src/components.siemens.identification/ctrl/apax.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,8 @@ dependencies:
"@ix-ax/axopen.core": '0.0.0-dev.0'
"@ix-ax/axopen.timers": '0.0.0-dev.0'
"@ix-ax/axopen.abstractions": '0.0.0-dev.0'
"@ax/simatic-1500-distributedio": ^6.0.3
"@ax/system-timer": ^6.0.94
"@ix-ax/axopen.io": '0.0.0-dev.0'
"@ax/system-serde": ^6.0.94
"@ax/simatic-1500-diagnostics-hardware": ^6.0.1
"@ix-ax/ax.axopen.hwlibrary": '0.0.0-dev.0'
publicKeys:
"@ix-ax": 30c06ef7830b4dfd8f16e003508da1ac2d187714d0e1f38279a9332cbe4e4e17
installStrategy: strict
Expand Down
3 changes: 1 addition & 2 deletions src/components.ur.robotics/app/apax.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,7 @@ dependencies:
"@ix-ax/axopen.abstractions": '0.0.0-dev.0'
"@ix-ax/axopen.components.ur.robotics": '0.0.0-dev.0'
"@ix-ax/axopen.simatic1500": '0.0.0-dev.0'
"@ax/simatic-1500-clocks": ^6.0.37
"@ax/simatic-1500-distributedio": ^6.0.3
"@ix-ax/ax.axopen.app": '0.0.0-dev.0'
scripts:
# Obsolete scripts, could be removed at some point ====>
delta:
Expand Down
Loading

0 comments on commit 3c23453

Please sign in to comment.