0
votes
Can you use CruiseControl to build Cocoa/Objective-C projects?
Yes, CruiseControl has a support for git.
…
4
votes
Building with ant : dynamic build options?
I typically use a variation on the default properties answer already given:
<property file="local.properties" />
<property file="default.properties" />
…
0
votes
Eclipse 3.4 ant task hangs
Did you check the known issues for Ant in the Eclipse 3.4 release notes?
…
0
votes
2
votes
Recommended project structure for Flex builds
I don't know Flex development but I know CI so I'll comment on that aspect.
I work on CruiseControl, so that's what I use …
0
votes
How do I simultaneously work on version 1.1 and version 2.0?
One key point is captured in this picture from The Build Doctor: only merge one d …
0
votes
How to automate Matlab/Simulink/Real-TimeWorkshop code generation?
can you do something like:
matlab -r samplebuild -nosplash
-nodesktop < yes
?
Actually I know you can do it, just not sure it will work... …
0
votes
Make html validation part of build cycle
Might not be best choice for you but there's an Ant task for this, XmlValidate.
…
0
votes
subversion ant task
So if you just run "ant prepare" it takes 2 hrs? Or is this 2 hr duration only under special conditions like your build machine?
Have you tried using the task for comparison, to try and i …
0
votes
Continuous Integration vs. Nightly Builds
I think the other posts cover the common reasons, like having a build process that takes "too long" or having to run only a subset of tests during the CI build. But there's another reason which is …
0
votes
How do I pass build number from Nant back to Cruise Control
However, we only recently got
CruiseControl so our official build
number is different from what is
listed in CruiseControl.
Sort of along the lines of wha …
1
vote
How can I profile file I/O?
An oldie but a goodie: create a RAM disk and compile your files from there.
…
1
vote
What do you use for a complex build process?
I like Ant but only if you spend the time to write your own Java plugins to encapsulate complex actions. It isn't hard but unfortunately most people try to write their logic in XML w/the ant-contri …
4
votes
What punishment do you have when someone on the team breaks the build?
Revert the offending commit.
Having to merge changes when they return is usually punishment enough.
…
0
votes
