So I am trying to run a toolchain inside a windows docker container for compiling code for ARM.The docker container is running in a pipeline on Azure pipelines.
When I run the container locally in Docker on my laptop everything works just fine, but when I run it in Azure pipelines it fails to run Make and GCC. I will not even give me the version of Make. I use an inline Powershell task in the pipeline to run commands in the Docker container. And as mentioned when I test locally it works perfectly, but not on Azure.
When I am trying to run Make it just fails instantly with the following message: "##[error]Cmd.exe exited with code '1'."
This is the only error information it gives no matter how I call Make in Powershell, and this is also the case for GCC.
I have used Chocolatey for installing Make and GCC and I have looked into issues with the PATH and bad installations, but I have not been able to solve it.
Has anybody had a similar issue? And is there a solution to this?