active questions tagged build-process - Stack Overflowmost recent 30 from stackoverflow.com2009-12-03T16:28:24Zhttp://stackoverflow.com/feeds/tag/build-processhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1835626/c-dll-fails-when-run-from-different-drive-letter0C++ DLL fails when run from different drive letterjmgant2009-12-02T20:37:01Z2009-12-03T13:46:43Z
<p>I've written a C++ DLL that connects to a Sybase database using the native C library for Sybase. I can build and run the program on my C drive, and others can run it from their C drives, and everything works. But in some situations both my DLL and the Sybase DLL are located on the F drive instead of the C drive. In those cases my DLL apparently fails to load the Sybase DLL.</p>
<p>I'm a little unclear on how linking works, but based on my incomplete understanding my best guess is that the C-drive location of the DLL is what gets built into the final DLL, which is what causes it to fail when it runs from a different drive letter. Does that sound like a reasonable explanation? Any other reasons my DLL would fail to load the Sybase DLL when run from a different drive letter? Any idea how I can resolve this?</p>
<p><strong>EDIT:</strong> Turns out this was the wrong question, but it led me in the right direction. The Sybase DLL uses an ini file to determine database connection details, and I had the path for that hard-coded to the C drive.</p>
http://stackoverflow.com/questions/1829051/sharing-common-ant-targets-between-projects1Sharing common Ant targets between projectsRob Hruska2009-12-01T21:28:41Z2009-12-03T13:05:25Z
<p>Is there a well-established way to share <a href="http://ant.apache.org/" rel="nofollow">Ant</a> targets between projects? I have a solution currently, but it's a bit inelegant. Here's what I'm doing so far.</p>
<p>I've got a file called <code>ivy-tasks.xml</code> hosted on a server on our network. This file contains, among other targets, boilerplate tasks for managing project dependencies with <a href="http://ant.apache.org/ivy/" rel="nofollow">Ivy</a>. For example:</p>
<pre><code><project name="ant-ivy-tasks" default="init-ivy"
xmlns:ivy="antlib:org.apache.ivy.ant">
...
<target name="ivy-download" unless="skip.ivy.download">
<mkdir dir="${ivy.jar.dir}"/>
<echo message="Installing ivy..."/>
<get src="http://repo1.maven.org/maven2/org/apache/ivy/ivy/${ivy.install.version}/ivy-${ivy.install.version}.jar"
dest="${ivy.jar.file}" usetimestamp="true"/>
</target>
<target name="ivy-init" depends="ivy-download"
description="-> Defines ivy tasks and loads global settings">
<path id="ivy.lib.path">
<fileset dir="${ivy.jar.dir}" includes="*.jar"/>
</path>
<taskdef resource="org/apache/ivy/ant/antlib.xml"
uri="antlib:org.apache.ivy.ant"
classpathref="ivy.lib.path"/>
<ivy:settings url="http://myserver/ivy/settings/ivysettings-user.xml"/>
</target>
...
</project>
</code></pre>
<p>The reason this file is hosted is because I <strong>don't</strong> want to:</p>
<ul>
<li>Check the file into every project that needs it - this will result in duplication, making maintaining the targets harder.</li>
<li>Have my build.xml depend on checking out a project from source control - this will make the build have more XML at the top-level just to access the file.</li>
</ul>
<p>What I do with this file in my projects' build.xmls is along the lines of:</p>
<pre><code><property name="download.dir" location="download"/>
<mkdir dir="${download.dir}"/>
<echo message="Downloading import files to ${download.dir}"/>
<get src="http://myserver/ivy/ivy-tasks.xml" dest="${download.dir}/ivy-tasks.xml" usetimestamp="true"/>
<import file="${download.dir}/ivy-tasks.xml"/>
</code></pre>
<p>The "dirty" part about this is that I have to do the above steps <em>outside of a target</em>, because the <a href="http://ant.apache.org/manual/CoreTasks/import.html" rel="nofollow">import task</a> must be at the top-level. Plus, I still have to include this XML in all of the build.xml files that need it (i.e. there's still some amount of duplication).</p>
<p>On top of that, there might be additional situations where I might have common (non-Ivy) tasks that I'd like imported. If I were to provide these tasks using Ivy's dependency management I'd still have problems, since by the time I'd have resolved the dependencies I would have to be inside of a target in my build.xml, and unable to import (due to the constraint mentioned above).</p>
<p>Is there a better solution for what I'm trying to accomplish?</p>
http://stackoverflow.com/questions/1832853/is-it-possible-to-create-an-uber-jar-containing-the-project-classes-and-the-pro0Is it possible to create an "uber" jar containing the project classes and the project dependencies as jars with a custom manifest file ?meme2009-12-02T13:19:18Z2009-12-03T00:00:09Z
<p>I'm trying to create a executable jar(using maven) that contains the project classes and it's dependencies with a manifest file that has the entry for the main class and the class path entry that points to the dependencies packed in the root of the jar;something like this :</p>
<p>Manifest File:</p>
<pre>
.....
Main-Class : com.acme.MainClass
Class-Path : dependecy1.jar dependecy2.jar
.....
</pre>
<p>Jar:</p>
<pre>
jar-root
|-- ....
|-- com/acme/../*.class
|-- dependecy1.jar
`-- dependecy2.jar
</pre>
<p>I'm using the maven-jar-plugin to create the manifest file and the maven-shade-plugin to create the "uber" jar but the dependencies are unpacked and added as classes to my jar.</p>
http://stackoverflow.com/questions/1827705/c-buildsystem-with-ability-to-compile-dependencies-beforehand2C++ Buildsystem with ability to compile dependencies beforehanditti2009-12-01T17:31:43Z2009-12-02T20:34:00Z
<p>Hi,</p>
<p>I'm in the middle of setting up an build environment for a c++ game project. Our main requirement is the ability to build not just our game code, but also its dependencies (Ogre3D, Cegui, boost, etc.). Furthermore we would like to be able build on Linux as well as on Windows as our development team consists of members using different operating systems.</p>
<p>Ogre3D uses <a href="http://cmake.org/" rel="nofollow">CMake</a> as its build tool. This is why we based our project on CMake too so far. We can compile perfectly fine once all dependencies are set up manually on each team members system as CMake is able to find the libraries.</p>
<p>The Question is if there is an feasible way to get the dependencies set up automatically. As a Java developer I know of Maven, but what tools do exist in the world of c++?</p>
<p><hr></p>
<p><em>Update:</em> Thanks for the nice answers and links. Over the next few days I will be trying out some of the tools to see what meets our requirements, starting with CMake. I've indeed had my share with autotools so far and as much as I like the documentation (the autobook is a very good read), I fear autotools are not meant to be used on Windows natively.</p>
<p>Some of you suggested to let some IDE handle the dependency management. We consist of individuals using all possible technologies to code from pure Vim to fully blown Eclipse CDT or Visual Studio. This is where CMake allows use some flexibility with its ability to generate native project files. </p>
http://stackoverflow.com/questions/1788864/pre-build-event-to-include-files-in-project0Pre-build event to include files in projectMarcel2009-11-24T09:14:49Z2009-12-02T13:53:18Z
<p>I run a pre-build event to copy files to my project's folder (ProjectX). I need to include these files as content files in ProjectX, so that when built, it is seen as part of ProjectX's output or content. </p>
<p>ProjectX is then included in a setup project to be deployed, so the files copied to ProjectX must also be included in the setup project (as "Content files from ProjectX").</p>
<p>Any suggestions?</p>
http://stackoverflow.com/questions/1828513/how-to-ignore-output-from-executable-with-cruisecontrol-net-build0How to ignore output from executable with CruiseControl.Net build?BrianM2009-12-01T20:02:08Z2009-12-01T21:36:20Z
<p>I'm running a little find and replace utility called fart.exe (yes, fart, as in Find and Replace Text) as part of my CC build. Works great. </p>
<p>The problem is that FART while it is working displays a little ASCII spinner composed of pipe, dash, slash... | / - . There isn't a way to suppress this spinner, and CC thinks these little symbols are error messages and the build fails. I've tried: </p>
<ul>
<li>adding those symbols as successexitcodes in CC -- same result, apparently only ints work </li>
<li>Calling fart via a batch file with ECHO OFF -- it still outputs the spinner and causes the build to fail</li>
</ul>
<p>Any other ideas?</p>
<pre><code><exec>
<executable>C:\fart.exe</executable>
<buildArgs>myfile.txt string1 string2</buildArgs>
<successExitCodes>1,0</successExitCodes>
</exec>
</code></pre>
http://stackoverflow.com/questions/1825094/is-there-an-automated-program-to-find-c-linker-errors-1Is there an automated program to find C++ linker errors?Smallgods2009-12-01T09:42:59Z2009-12-01T13:03:15Z
<p>I'm working in a Linux environment with C++, using the GCC compiler.</p>
<p>I'm currently working on modifying and upgrading a large pre-existing body of code. As part of this, it has been necessary to add quite a large number of small references throughout the code in a variety of places to link things together, and also to add in several new external code libraries. There is also quite a large and complex structure of Makefiles linked to a configure.ac file to handle the build process.</p>
<p>Upon starting the build process everything compiles without a problem, but comes back with the dreaded linker error when trying to use a newly added custom code library we've created. We have now been through a vast amount of code with a fine tooth comb looking for spelling mismatches, checking the order that all the libraries are included in the build process, and checked that the .o files created contain what we need using dumps, and all are as and where they should be. We've also tested the library separately and the problem definitely doesn't lie there. </p>
<p>In short, we've tried most things that you should normally do in these scenarios. </p>
<p>Is there a tool for C++ that can detect linker errors automatically, in a similar vein to cppcheck or splint (both of which we have run to no avail) that could help here?</p>
http://stackoverflow.com/questions/1686662/tfs-msbuild-strong-name-and-code-signing-of-assemblies0TFS MSBuild Strong name and code signing of assemblies.Morten Lyhr2009-11-06T10:16:20Z2009-12-01T06:00:03Z
<p>I need to strong name and code sign my assemblies.</p>
<p>I dont want to change anything in Visual Studio, all changes must be on the TFS Build server.</p>
<p>Any know how I can do this?</p>
http://stackoverflow.com/questions/935506/what-are-the-best-practices-for-the-aspnetdevelopmentserverhost-attribute2What are the best practices for the AspNetDevelopmentServerHost attribute?Chris Lively2009-06-01T16:06:55Z2009-11-30T23:55:38Z
<p>We have a Web Application Project (dozens actually..) that has a testing project attached to it. In the testing project I have a simple unit test which exercises a couple of methods.</p>
<p>Running locally, the unit test executes and works.</p>
<p>However, when our TFS Build server attempts to execute the test, it fails with a error about an invalid path for the AspNetDevelopmentServerHost attribute. Other team members can execute it just fine.</p>
<p>The problem is that the root of my TFS Workspace is set to c:\projects\ One of the team members has theirs set to c:\tfs2008\ The TFS Build server on the other hand sets the pathToWebRoot variable to "c:\blahblah\Release_PublishedWebsites..." Which results in a bad path.</p>
<p>Due to the number of projects we have, I can't have everyone reset an environment variable every time they switch projects. </p>
<p>So, what are the best practices with regards to unit testing web projects in a team environment? The <a href="http://msdn.microsoft.com/en-us/library/ms404875%28VS.80%29.aspx" rel="nofollow">MSDN site article</a> was in true microsoft fashion less than helpful.</p>
http://stackoverflow.com/questions/1814526/problem-building-executable-jar-with-maven1Problem building executable jar with mavenRMorrisey2009-11-29T03:14:29Z2009-11-29T21:10:49Z
<p>I am trying to generate an executable jar for a small home project called "logmanager" using maven, just like this:</p>
<p><a href="http://stackoverflow.com/questions/574594/how-can-i-create-an-executable-jar-with-dependencies-using-maven">http://stackoverflow.com/questions/574594/how-can-i-create-an-executable-jar-with-dependencies-using-maven</a></p>
<p>I added the snippet shown there to the pom.xml, and ran mvn assembly:assembly. It generates two jar files in logmanager/target: logmanager-0.1.0.jar, and logmanager-0.1.0-jar-with-dependencies.jar. I get an error when I double-click on the first jar:</p>
<pre><code>Could not find the main class: com.gorkwobble.logmanager.LogManager. Program will exit.
</code></pre>
<p>A slightly different error when I double-click the jar-with-dependencies.jar:</p>
<pre><code>Failed to load Main-Class manifest attribute from: C:\EclipseProjects\logmanager\target\logmanager-0.1.0-jar-with-dependencies.jar
</code></pre>
<p>I copied and pasted the path and classname, and checked the spelling in the POM. My main class launches fine from an eclipse launch configuration. Can someone help me figure out why my jar file won't run? Also, why are there two jars to begin with? Let me know if you need more information.</p>
<p>Thanks!</p>
<p>[Edit: my POM is now as follows:]</p>
<pre><code><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.gorkwobble</groupId>
<artifactId>logmanager</artifactId>
<name>LogManager</name>
<version>0.1.0</version>
<description>Systematically renames specified log files on a scheduled basis. Designed to help manage MUSHClient logging and prevent long, continuous log files.</description>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.2</version>
<!-- nothing here -->
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.2-beta-4</version>
<configuration>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
<archive>
<manifest>
<mainClass>com.gorkwobble.logmanager.LogManager</mainClass>
</manifest>
</archive>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<!-- commons-lang -->
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
<version>2.4</version>
</dependency>
<!-- Quartz scheduler -->
<dependency>
<groupId>opensymphony</groupId>
<artifactId>quartz</artifactId>
<version>1.6.3</version>
</dependency>
<!-- Quartz 1.6.0 depends on commons collections -->
<dependency>
<groupId>commons-collections</groupId>
<artifactId>commons-collections</artifactId>
<version>3.1</version>
</dependency>
<!-- Quartz 1.6.0 depends on commons logging -->
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
<version>1.1</version>
</dependency>
<!-- Quartz 1.6.0 requires JTA in non J2EE environments -->
<dependency>
<groupId>javax.transaction</groupId>
<artifactId>jta</artifactId>
<version>1.1</version>
<scope>runtime</scope>
</dependency>
<!-- junitx test assertions -->
<dependency>
<groupId>junit-addons</groupId>
<artifactId>junit-addons</artifactId>
<version>1.4</version>
<scope>test</scope>
</dependency>
<!-- junit dependency; FIXME: make this a separate POM -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.1</version>
</dependency>
</dependencies>
<dependencyManagement>
</dependencyManagement>
</project>
</code></pre>
http://stackoverflow.com/questions/1711834/defining-your-own-vs-c-build-macros0Defining your own VS C++ Build Macrosleeand002009-11-10T22:55:26Z2009-11-29T20:39:03Z
<p>We came across a bunch of pre-defined Build Macros for instance $(SolutionDir), but can you define your own build macros in Visual C++ 2005?</p>
http://stackoverflow.com/questions/1807652/ilmerge-dll-not-merged-in-correctly0ILMerge DLL not merged in correctlyFiona Holder2009-11-27T09:27:30Z2009-11-27T22:12:09Z
<p>In the build process for a .NET C# tool, I have been using ILMerge to merge the assemblies into a single exe. </p>
<p>I added a new class library recently, and now the ILMerge is failing. I have remembered to tell it to merge in the new DLL!</p>
<p>It is now giving me this error, which I don't really understand:</p>
<blockquote>
<p>ILMerge.Merge: The assembly
'DataObjects' was not merged in
correctly. It is still listed as an
external reference in the target
assembly.</p>
</blockquote>
<p>All of the assembly references I have done using 'project' references, and it has not failed in the past.</p>
<p>Can anyone explain this error for me, or suggest a workaround please?</p>
http://stackoverflow.com/questions/1338073/how-to-build-and-deploy-an-amiga-application-that-is-bootable-from-a-floppy-disk1How to build and deploy an Amiga application that is bootable from a floppy disk (NON-DOS)?Pedro Palhoto2009-08-26T23:10:56Z2009-11-26T18:38:27Z
<p>Following up on the "<i><a href="http://stackoverflow.com/questions/705863/how-do-i-code-and-compile-an-amiga-application">How do I code and compile an Amiga application?</a></i>" question, what development applications and build process is required to boot an Amiga application from a floppy disk?</p>
<p><strong>Update</strong>: Pointed out by jesup, taken from Amiga RKM Devices:</p>
<blockquote>
<p>The Amiga trackdisk device directly
drives the disk, controls the disk
motors, reads raw data from the
tracks, and writes raw data to the
tracks. Normally, you use the AmigaDOS
functions to write or read data from
the disk. The trackdisk device is the
lowest-level software access to the
disk data and is used by AmigaDOS to
access the disks.</p>
</blockquote>
<p><i>trackdisk.device</i> is the library to use. While I learn how to use Amiga trackdisk, are there any "deploy to floppy" utilities to employ after the developing application is compiled?</p>
<p>All tutorials I have found so far refer to building applications and running them from AmigaDOS.</p>
http://stackoverflow.com/questions/1721251/cvs-changelog-script-for-windows-based-build-process0CVS ChangeLog-script for windows-based build-process?martin2009-11-12T10:17:11Z2009-11-26T14:45:45Z
<p>Hello,</p>
<p>Do you know if there is a script or tool to create a changelog from our cvs, which can be integrated in a build-process on a windows-based build-server. I found this: <a href="http://www.red-bean.com/cvs2cl/" rel="nofollow">http://www.red-bean.com/cvs2cl/</a>, but it is not possible to install Perl on our build-server so i can't use cvs2cl. I've tried the simple command "cvs log", but there is too much overhead in the output.</p>
<p>Would be nice, if you can give me an advice,</p>
<p>Greetings Martin</p>
http://stackoverflow.com/questions/1803590/waf-generating-visual-studio-projects0Waf generating Visual Studio projects?Anacrolix2009-11-26T13:09:33Z2009-11-26T13:09:33Z
<p>Can the <a href="http://code.google.com/p/waf/" rel="nofollow">Waf</a> build system generate Visual Studio project files for C/C++?</p>
http://stackoverflow.com/questions/771743/speeding-up-build-times-in-asp-net3Speeding up build times in ASP.NETweazl2009-04-21T09:11:54Z2009-11-25T21:51:01Z
<p>I am currently involved in a ASP.NET project with about 40 projects in the solution. We are doing all our development in cloned Virtual PC environments so all developers have identical setups. That's all good, managing dependencies is easy, however building the solution is horribly slow. Virtual PC can only utilize one CPU so I'm really only using half of my computers resources.</p>
<p>It takes a full 3 minutes from build to a complete page load.. and it's getting worse every day as the projects grow. Fixing simple things is starting to take a long time and personally, I'm getting frustrated waiting all the time as I can't really work while the computer is compiling.</p>
<p>Is there any way of distributing my build across several computers to speed up the build process?</p>
<p>Would an SSD noticeably improve upon my build times?</p>
<p>Are there any other way of speeding up the build?</p>
<p><strong>Note</strong>: I have tried precompiling static dependencies with <em>ngen</em> but later read that ASP.NET does not support <em>ngen</em>. I use Visual Studio 2008 and there is no antivirus software present in the virtual environment.</p>
http://stackoverflow.com/questions/1443792/bin-deploy-rake-and-ironruby2Bin deploy rake (and IronRuby)Krzysztof Koźmic2009-09-18T10:45:02Z2009-11-25T16:36:58Z
<p>I'm on a .NET project, and I would like to migrate build script from MsBuild to Rake. I don't want to force developers (or build agent machines) to have to install anything, I want it to be self contained. If possible I'd prefer to use IronRuby.</p>
<p>Is it possible to just drop everything in /tools/rake and /tools/IronRuby and have it just work, the way everyone does with NAnt?</p>
<p>I would appreciate any pointers to tutorials on this or blogposts. I'm a complete noob when it comes to Ruby, rake and these gem things.</p>
http://stackoverflow.com/questions/1786917/is-there-a-way-to-specify-assembly-references-based-on-build-configuration-in-vis1Is there a way to specify assembly references based on build configuration in Visual Studio?snicker2009-11-23T23:55:14Z2009-11-25T10:59:44Z
<p>I have a project that adds some extensibility to another application through their API. However, I want to be able to use the same project for multiple versions of their application, because most of the code is the same.</p>
<p>However, each version of the application requires a reference to the proper assembly for that version of the software. They load their assemblies into the GAC, so even if I could specify the <em>version</em> of the assembly to use based on build configuration I would be fine. Is there a way to do this from inside of VS or do I need an external build tool?</p>
http://stackoverflow.com/questions/1795896/eclipse-cdt-static-resources-under-build-folder0Eclipse CDT static resources under build folderAndrejs Cainikovs2009-11-25T10:06:15Z2009-11-25T10:57:58Z
<p>This should be a silly question, but after a hour of implementing following idea I ended up here.</p>
<p>So, I'm building my C++ project under Eclipse and my release folder should include a static folder with some files inside it, that are required by executable during runtime. The problem is that before actual build this release folder is completely wiped out and I'm losing all the files inside it.</p>
http://stackoverflow.com/questions/1795565/multiple-output-paths-for-a-c-project-file2Multiple Output paths for a C# Project filerainbow3652009-11-25T09:03:17Z2009-11-25T09:10:54Z
<p>Can I use multiple output paths. like when i build my project, the exe should generate in two different paths. If so, How can I specify in Project Properties-> Build -> output path? I tried using , and ; but neither of those work. </p>
http://stackoverflow.com/questions/1785194/couldnt-recognise-pom-xml-file0couldnt recognise pom.xml filedagg2009-11-23T18:52:15Z2009-11-24T11:41:26Z
<p>i am build forge as build tool. it is executing maven mvn commands fine ,but it couldnt recognizing the maven project pom.xml to run the build.so i tried to execute the same pom.xml through the command window and that is working fine could any one can help me how to solve the issue</p>
<p>i am using maven 2.09 version and build forge 7.1</p>
<p>is there any compatibility issues with maven if so what are they</p>
<p>thanks Dagg</p>
http://stackoverflow.com/questions/1789212/running-multiple-teamcity-agents-on-the-same-computer0Running multiple TeamCity Agents on the same computer?ripper2342009-11-24T10:31:21Z2009-11-24T11:11:11Z
<p>We have several build machines, each running a single TeamCity build agent. Each machine is very strong, and we'd like to run several build agents on the same machine.</p>
<p>Is this possible, <strong>without using virtualization</strong>? Are there quality alternatives to TeamCity that support this? </p>
http://stackoverflow.com/questions/677436/how-to-get-the-git-commit-count4How to get the git commit count?Splo2009-03-24T13:38:55Z2009-11-24T09:24:53Z
<p>I'd like to get the number of commits of my git repository, a bit like SVN revision numbers.
The goal is to use it as a unique, incrementing build number.</p>
<p>I currently do like that, on Unix/Cygwin/msysGit:</p>
<pre><code>git log --pretty=format:'' | wc -l
</code></pre>
<p>But I feel it's a bit of a hack.</p>
<p>Is there a better way to do that?
It would be cool if I actually didn't need wc or even git, so it could work on a bare Windows. Just read a file or a directory structure ...</p>
http://stackoverflow.com/questions/298259/looking-for-a-strong-build-management-system0Looking for a strong Build Management system Sakin2008-11-18T09:34:53Z2009-11-23T12:04:09Z
<p>My team works on a Medium sized product which takes about 2 hours to build on a single dual-core machine.
As part of an effort to improve productivity I am looking for alternatives to improve hour build process.</p>
<p>Currently we build C++ code and .NET code using VS2005 solutions, we also have some legacy code built using makefiles and we pack the products using installshield. We also have unit tests written in UnitTest++, Nunit, CPPUnit and some tests that we wrote ourselves without any testing framework. Everything is coordinated by a set of Perl scripts that we wrote.</p>
<p>I am looking for a product, or a suite of products, or a bunch of non-related products that will allow me to do the following:</p>
<ol>
<li><p>Improve building time. I tried Incredibuild for parallelizing the build with some success. I will be happy to find more alternatives (cheaper ones???)</p></li>
<li><p>Improve the build process definition. I need something to replace our complicated perl scripts with something that will allow me to define the build process easily.</p></li>
<li><p>Improve our ability to discover problems in the build (maybe a web interface for looking at build outputs, highlight compilation errors, gather statistics on build times and build failures etc.</p></li>
<li><p>Any other nice features that can help us improve our build management.</p></li>
</ol>
http://stackoverflow.com/questions/1781942/prebuild-event-only-on-build-solution-project-not-on-f5debug0Prebuild Event only on Build Solution/Project not on F5(Debug)ase69s2009-11-23T09:15:19Z2009-11-23T11:30:02Z
<p>As the tittle says I need a prebuild command CONDITION that executes an exe on build solution/project and passes when i use F5.</p>
<p>I found "$(ConfigurationName)" as a possible solution on some websites but it only works if you change each time the configuration type manually.</p>
<p>Anybody knows the trick??</p>
http://stackoverflow.com/questions/1414117/any-experience-with-a-continuous-integration-appliance4Any experience with a Continuous Integration Appliance?Michael Haren2009-09-12T02:50:02Z2009-11-22T17:27:07Z
<p>We have a continuous integration server running <a href="https://hudson.dev.java.net/" rel="nofollow">Hudson CI</a>. I'm thinking about putting up an LCD display in the office with various build stats and am curious what others have put together. </p>
<p>I'm currently thinking about buying a WIFI-enabled digital picture frame that I can send generated images to. Or repurposing an old laptop...</p>
<p>Thoughts? Experiences? </p>
http://stackoverflow.com/questions/1737019/multiple-websites-running-on-same-codebase0Multiple websites running on same codebase?Masade2009-11-15T08:48:33Z2009-11-21T18:05:53Z
<p>Hi, We are developing an application that would be offered as a hosted solution. I am struck with understanding how can i use multiple sites with same code without duplicating base code.</p>
<p>eg:
website 1: www.example.com and website 2: www.sample.com will run on same code, but would have different configuration settings, and different theme... like we run our own domain names in wordpress.</p>
<p>i wish to know how can i do this.</p>
<p>also in case of database.. would it be better i create individual databases for each website or use the same database with website ID as a column in each table.</p>
<p>pls help me.</p>
<p>[clarification]
its not domain alias. like... it would be a service. where different clients will be offered the same application on their own domain name with different theme. something like what blogger does.. with own domain names but same blog application</p>
<p>[technology]
specifically am looking at how to use the host name to determine which configuration to use
we are using PHP and MySQL</p>
http://stackoverflow.com/questions/1774889/cobertura-ant-script-is-missing-log4j-classes0Cobertura ant script is missing Log4J classescringe2009-11-21T07:57:15Z2009-11-21T09:03:46Z
<p>I tried to get <strong>Cobertura</strong> running inside my ant script, but I'm stuck right at the beginning. When I try to insert the cobertura <em>taskdef</em> I'm missing the Log4J libraries. </p>
<h2>Ant properties & classpath</h2>
<pre><code><property name="cobertura.dir" location="/full/path/to/cobertura-1.9.3" />
<path id="cobertura.classpath">
<fileset dir="${cobertura.dir}">
<include name="cobertura.jar" />
<include name="lib/**/*.jar" />
</fileset>
</path>
<taskdef classpathref="cobertura.classpath" resource="tasks.properties" />
</code></pre>
<h2>My ant target</h2>
<pre><code><!-- =================================
target: cobertura
================================= -->
<target name="cobertura" depends="clean, init" description="Generates cobertura coverage reports">
<cobertura-instrument todir="${dir.build.instrumented}">
<fileset dir="${dir.build}">
<include name="**/*.class" />
</fileset>
</cobertura-instrument>
</target>
</code></pre>
<p>I think I did everything like it is described in the <a href="http://cobertura.sourceforge.net/anttaskreference.html" rel="nofollow">Cobertura documentation</a> but I get this</p>
<h2>Ant build error</h2>
<pre><code>BUILD FAILED
build.xml:95: java.lang.NoClassDefFoundError: org/apache/log4j/Logger
</code></pre>
<p>Inside the <strong><em>${cobertura.dir}</em></strong> there is the <strong><em>lib</em></strong> directory with all files. I unzipped it from the cobertura distribution ZIP directly into that directory.</p>
<p>Am I missing a step? Something wrong with my configuration so far?</p>
http://stackoverflow.com/questions/1756007/why-not-use-tfs-as-a-build-ci-solution2Why not use TFS as a build / CI solution ?Mischa Kroon2009-11-18T13:36:32Z2009-11-19T14:18:45Z
<p>Currently our build solution is set up using TFS + MS Build scripts. </p>
<p>TFS is also being used as a CI server. </p>
<p>I've seen several posts on this site telling people about other CI solutions.
Are there any compelling options to move to another Solution for our build system?</p>
<p>Or in other words what are we missing out on by using TFS?</p>
<p><em>EDIT</em></p>
<p>We are using TFS for source control / issue tracking and I think this is a good solution, im just wondering about the other options for build server / CI server integrating with TFS. </p>
http://stackoverflow.com/questions/230595/what-artifacts-to-save-for-a-nightly-build5What artifacts to save for a nightly build?Jay Bazuzi2008-10-23T17:19:37Z2009-11-18T22:00:47Z
<p>Assume that I set up an <a href="http://stackoverflow.com/questions/204603/nightly-builds-why-should-i-do-it">automatic nightly build</a>. What artifacts of the build should I save?</p>
<p>For example:</p>
<ul>
<li>Input source code</li>
<li>output binaries</li>
</ul>
<p>Also, how long should I save them, and where?</p>
<p>Do your answers change if I do Continuous Integration? </p>