Creating a build server for .NET and C/C++ [closed] - build

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 1 year ago.
Improve this question
I am interested in creating a build server for automating builds in .NET and C/C++.
I understand the basic structure of the system but I would like to know there is any open source of professional software out there that I can install on the server for performing automated builds.
Thanks in advance for your advice.
Subbu

In addition to Cruise Control (which I'm also using), there's also UppercuT.

TeamCity is really easy to use and setup.
It's a commercial product, but there is a free edition with basically no restrictions, except that the number of possible build configurations (=projects) is limited to 20. See the feature comparison here.

I've used CruiseControl with MSBuild pretty successfully. It runs on Java.
There's also CruiseControl.Net for running using the .NET platform.

Related

Does anyone know how to integrate Redis with Visual Studio for using with c++ [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
I am new to Redis and want to use it in my application.
Have tried doing various steps from links across the web but not able to get it done,I need to send / receive strings to/ from redis db using c++..
If anyone knows any certain way or link where I can get the clear steps it will be very helpful!
HiRedis is your best bet: https://github.com/redis/hiredis
It's a C client, so you might want to write some wrappers for convenience, but it's very solid. The downside is that it's not easiest to use asynchronously if you have to make more than a few calls.
I've also used cpp_redis: https://github.com/cylix/cpp_redis
It's easier to use, but last time I worked with it, it still had some bugs. It is in active development, however, so it likely to be better by now. It also comes with MSVC project, so it might make it a lot easier for you to integrate. If stability isn't crucial for your project, and integration time is, I'd give it a try.

Are there any developer tool out there that allows me to roll-out features incrementally and, at the same time, test them? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I have a huge project with a bunch of features. Each of these features are new to the product so I'm a bit worried how customers will perceive them. I'm wondering if there are tools out there that help me facilitate my features releases. Are there any analytic tools out there that let me measure which one is working and which isn't? I'm worried I might lose customers.
I believe there's no such universal tool for testing everything in everyone. However there are some work flows and methodologies which helps to ensure released functionality quality. For example writing some tests in software level with some schedule should help a lot.
I cannot provide any concrete guidance since every team takes practices which suits best their needs.

Workflow engine for C/C++ [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I am looking for a plain C/C++ workflow engine with support of BPML/BPEL. It should be native code without references to Java or .NET. It may or may not be open source.
In the past I've developed a BPMS framework based on C++ Workflow Engine.
At the moment I've extracted Workflow Engine from the framework and my roadmap is to implement xpdl standard and cross platform (now is only Windows).
You can find code here and download a Business Process modeler based on Visio.
Let me know your impressions.
There is one base on Microsoft WF it called Criteria but its low level.

Open Source Platform for Subscription-based Web service? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
Looking for a LAMP-based platform for subscription-based Web service that I can easily hack to fit my needs, which one would you recommend based on the following criteria:
Documentation
Install base
Support community
Scalability
Availability of plugins/add-ons
Correctness of Design (i.e. no need
to hack core files to add a plugin)
Feel free to add other criteria.
Wikipedia has a great comparison table of web service frameworks. This could be a good starting point: http://en.wikipedia.org/wiki/List_of_web_service_frameworks
Your best bet may be to go with a CMS and use a subscription plugin.
Joomla: http://extensions.joomla.org/extensions/e-commerce/membership-a-subscriptions
Wordpress: https://premium.wpmudev.org/project/membership/

Is there any website which offers C++ IDE to run the codes in the cloud? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 3 years ago.
Improve this question
Is there any website which offers C++ IDE to run the codes in the cloud? Something like this which is for Python and matlab (octave in fact);
This one is nice for short snippets : http://codepad.org/
Or this one : http://ideone.com/
There is a lot of other websites proposing online compilers on google : http://www.google.com/search?q=online+c%2B%2B+compiler&hl=en&ei=2whaTJaUPIb20wTL1_3jCA&start=10&sa=N
I'm not entirely sure what you are seeking. You speak about simply Running C++, like JSFiddle but for C++, but then you mention IDE implying more features than the basic "Run this code in the browser" options.
At any rate, Koding is a full suited "Cloud IDE", which can handle any language you want. It's basically an Ubuntu computer in the cloud, with full root. This may be more extreme than you want, i'm not sure, let me know if you have questions :)