-
Notifications
You must be signed in to change notification settings - Fork 30
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is it possible to run this on Azure Pipelines? #29
Comments
@rasert Have you tried it yet? |
As far as possible - maybe. But does it make sense? Azure Functions max runtime timeout is 10 minutes. Why would you do that? I'm curious because in my two projects I maintain, I get a decent amount of support requests for Azure Functions in scenarios where I would never expect AF to be used. The only thing that makes sense to me is that some high-level architect at a company mandated everyone use AF for everything. |
@rasert So it is possible to use this library everywhere where you have an access to Docker. For example, I used it with GitlabCI (as Docker in Docker), Jenkins and AppVeyor. Theoretically, it might even work if you have Docker daemon exposed on a remote machine (but I didn't try this scenario yet, there might be some issues). The only thing that you need to supply is the address to Docker daemon. On Windows by default it is |
BTW, I did more research on this and Azure Functions does seem to support running a docker container as an option. I guess in some ways that is superior to using Azure Functions directly. See: https://medium.com/faun/running-azure-functions-in-a-docker-container-a-beginners-guide-f921c150eab4 What I'm not clear on is how this even works. How does azure functions environment settings like |
Just an update, Container is created while executing tests and removed afterwards. Not the same as running an Azure Function within a container.
|
I would like to run this on Microsoft-hosted agent on Azure Pipelines. Is it possible?
The text was updated successfully, but these errors were encountered: