Continous Integration Server in Windows Azure

后端 未结 3 1995
一整个雨季
一整个雨季 2021-01-06 17:57

I would like use a continuous integration system in my projects. However, I don\'t want to use a server sitting in my office, instead I\'d like my continuous integration ser

3条回答
  •  孤街浪徒
    2021-01-06 18:23

    It sounds like you are trying to use Azure as an infrastructure provider, which runs a VM where your builds happen.

    This is not a particularly good use-case for Azure. Azure is a platform to run your custom-built applications. While it does provide VM's similarly to Amazon or other IaaS cloud providers, those VM's are "stateless", can go up and down at will and meant to act as application servers where more than one can be up at any given time.

    You can probably get this to work on an Azure VM but I am not sure if the pain would be worth it.

    Azure's instances are application servers, not "windows servers".

    HTH

提交回复
热议问题