Hi
Following is the command line I use to run build my project
``
SET IDE_PATH=C:\nxp\MCUXpressoIDE_11.7.1_9221
SET IDE=%IDE_PATH%\ide\mcuxpressoidec.exe
mkdir workspace
"%IDE%" -nosplash --launcher.suppressErrors -application org.eclipse.cdt.managedbuilder.core.headlessbuild -data workspace -import project
"%IDE%" -nosplash --launcher.suppressErrors -application org.eclipse.cdt.managedbuilder.core.headlessbuild -data workspace -cleanBuild my_project/Release
``
This works fine, I have also placed sdk.zip in sdk_packages folder.
The problem is when I use the same machine which I used to run these commands, as a CI agent/runnner(am using gitlab-ci/cd) at that time it throws me an error that it cannot find linker file and a ton of java errors. (These same errors were observed when I ran these commands on cmd_line locally and had forgot to place sdk.zip in its respective folder). But now that I have placed in the folder and it works locally, why does it fail when I use the same machine as CI agent/runner