I am working on Linux based Azure functions with Python 3.7 and trying to use Azure DevOps. My python project has requirements like psycopg2-binary, cython to name a few of them.
We have been provisioned a self hosted windows agent pool in Azure Devops. I am building a pipeline and my concern is that the deployment won't be successful since the build would happen on the dev agent (on windows) and deployment is on Azure Functions (linux).
Do we need a linux agent in this case?
Please advise.