The sequence of actions required to construct a software product or executable application, or the system which performs such actions.

learn more… | top users | synonyms

24
votes
4answers
7k views

HintPath on a added reference in Visual Studio

I know that I can add a HintPath to an external DLLs to help Visual Studio/TFS find the dll when it builds. What I was wondering is... is it possible to add multiple HintPath? For example... ...
0
votes
2answers
2k views

How to enable verbose output using the ant task and inheritall=“false”

When starting a build in verbose mode (ant -v) the verbose mode is not propagated to the "subants". The ant task looks like this: <ant antfile="${buildproject}" inheritall="false" ...
1
vote
4answers
5k views

How to use Ant?

I've been trying to understand what Ant is used for but i still don't get it. Can someone give me one use case for which Ant is used for, something I can try to see why Ant is useful and what kind ...
25
votes
7answers
26k views

Maven: How to include jars, which are not available in reps into a J2EE project?

in my J2EE project I've a couple of dependencies, which are not available in any Maven repository, because they're proprietary libraries. These libraries need to be available at runtime, so that have ...
2
votes
3answers
402 views

Is it possible to share a single build number between plans of a Bamboo project?

I am using Atlassian Bamboo as my continuous integration server. For a project, I’ve defined two plans, namely development plan and release plan. Unfortunately, Bamboo uses two separate build numbers ...
1
vote
0answers
23 views

Do I have to build my program on the oldest Linux OS minor version I want to support?

If I want my software to run on Red Hat Linux 6.0, do I have to build it on 6.0? Or can I build it on 6.3? (Similar question for 5.X) I'm asking a general question about runtime implications of ...
1
vote
1answer
348 views

Getting Changesets in build process workflow activity

I have a custom Code Activity that sends out a status email at the end of the build process. So far I have it working except I cant seem to get the Associated Changesets and Work Items. Right now I ...
28
votes
7answers
24k views

Copy all files and folders using msbuild

Just wondering if someone could help me with some msbuild scripts that I am trying to write. What I would like to do is copy all the files and sub folders from a folder to another folder using ...
67
votes
11answers
79k views

Best practices for copying files with Maven

I have config files and various documents that I want to copy from the dev environment to the dev-server directory using Maven2. Strangely, Maven does not seem strong at this task. Options: ...
20
votes
6answers
3k views

Why is there no need for Maven in .NET?

I have the impression, that in the .NET-world, there is no real need for a Maven-like tool. I am aware that there is Byldan and NMaven (is it still alive?), but I have not yet seen a real-world ...
0
votes
1answer
42 views

Build path issue with CSipSimple

I know that this is a popular question in stackoverflow but I couldn't find a good solution for this issue. I'm developing a SIP app for android and I'm using the CSipSimple project as a library ...
1
vote
5answers
481 views

How do you handle multiple jar versions with lots of FOSS/COTS?

We have a Java product that uses a lot of FOSS/COTS software. A number of our "externals" use the same jar product, but a different version. For example, Ant 1.6.5 and Ant 1.7.0; or multiple versions ...
50
votes
5answers
48k views

Ant: How to execute a command for each file in directory?

I want to execute a command from an Ant buildfile, for each file in a directory. I am looking for a platform-independent solution. How do I do this? Sure, I could write a script in some scripting ...
0
votes
0answers
11 views

mirroring PostgreSQL roles from another server

Suppose I want to take all the roles from a production server and mirror them on a dev server. I cannot just dump the roles from production and then apply the dumped SQL to the dev server, because if ...
0
votes
2answers
512 views

Using VSTest to run unit test cases instead of MSTest

I have a x64 platform C# solution(VS2012) on a TFS2010 server. I have attached a unit test project (also x64) to this solution and created a build definition. When I queue the build, it succeeds but ...
82
votes
14answers
33k views

How to get the git commit count?

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. I currently do like that, on ...
9
votes
3answers
7k views

How to cope with “intrin.h: No such file or directory”?

#include <intrin.h> The above will report: intrin.h: No such file or directory Which seems to be a MSVC header file,but I'm using eclipse cdt,how can I make it available?Is there some ...
0
votes
0answers
70 views

To integrate git versions as build numbers or not? [closed]

A colleague and I have been taking turns debating/discussing the issues/merits of integrating a version derived from the current git repository into our code whenever it builds. We think the merits ...
0
votes
2answers
66 views

What are square braces surrounding attribute values?

In the TFS DefaultTemplate.11.1.xaml build process template, there are many attributes whose entire values are surrounded by square braces [], so a tag has the form <tagName ...
0
votes
0answers
29 views

Make replacement which builds based on changed checksum

Is there some Make replacement which builds new files, not based on file timestamps, but on updated file checksum?
4
votes
3answers
1k views

how to set up a Xcode build rule with a variable output file list?

Build Rules are documented in the Xcode Build System Guide They are well adapted to the common case where one input file is transformed into a fixed number (usually one) of output files. The output ...
1
vote
2answers
1k views

Can Xcode include application resource files that are generated during the build process?

I have a bunch of content files for my iPhone app that I generate via shell script. It takes way too long to be a part of the Xcode build process, so I run it periodically. I don't want to have to ...
1
vote
2answers
51 views

File type check SVN hook

I was search for two hours for SVN hook shell script which can do below two things and I am not able to find. Could you please help me if you have any relative template or materials. Need to check ...
0
votes
0answers
84 views

Can't build shared library of Osmand

I followed the steps as exactly as installDevelopmentEnvironment said. After "repo sync",I run the script ndk-build.sh under android/OsmAnd directory. I have added ANDROID_SDK, ANDROID_NDK, ...
1
vote
3answers
2k views

Change default ant target by command line argument

I'm recently assigned a task to make ant be able to build war packages for different environments. I'm almost done except one feature. The ant accepts an env parameter by like -Denv=DEV, and use ...
0
votes
1answer
119 views

Can Visual Studio 2012 do a custom build such as: compile project A > compile and link project B > link project A?

I am looking for a way to builds projects in this order with Visual Studio 2012 (C++ but might be a general question): Compile ProjectA (I just need the .objs) Compile and link ProjectB Link ...
1
vote
0answers
22 views

Can i test the entity framework down() migration as part of my build and deploy process?

i use entity framework code based migrations. A simplified version of my workflow is... Work against a local db, make changes to the model, test the up and the down migrations locally, commit code ...
2
votes
0answers
192 views

Selenium WebDriver tests failure in TFS build process

I use ChromeDriver for web application testing. Unit tests work OK locally on my machine. But when I start automated test run on build server it fails with an exception on new ChromeDriver(): ...
0
votes
2answers
520 views

IsCmdBld.exe - Randomly Errors Out

For some reason, when I use the standalone build from InstallShield 2009 Professional, there are times when I get an error and times when the build completes successfully, with no major ...
2
votes
2answers
147 views

How to automatically download the last build from TFS online?

as part of the continues integration process we want to download the last build form TFS online in order to execute automated tests locally. Do you know if there is a way to download it ...
1
vote
2answers
129 views

Does it Build? - A virtualbox image to build software packages successfully

I would like to set up a minimal Linux system which has nothing else to do then building software packages. But reliably and successfully! Goal: Set up and provide publicly a virtualbox image and a ...
3
votes
3answers
2k views

Xoreax Incredibuild alternatives?

Does anyone knows if there are some alternatives for the Xoreax Incredibuild, this tool is powerful but also too expensive for me. I have project written in c/c++ with about three hundred thousand ...
0
votes
0answers
12 views

Build taxonomy management - issues while changing build order in projects build tree

I'm working for a large project with hundreds of components. The compilation process is hierarchic. As compilation goes down the tree, when some project is compiled, the created DLL is then moved to ...
1
vote
4answers
119 views

A make situation! Using 3 programming languages for parts of the program. Which build tool to use? [closed]

Ok! I don't need people to ask why I'm using 3 different programming languages for a relatively simple task... (It's in the coursework specification) My situation is, I have to write a program. This ...
45
votes
9answers
5k views

Why does Go compile so quickly?

I've Googled and poked around the Go website, but I can't seem to find an explanation for Go's extraordinary build times. Are they products of the language features (or lack thereof), a highly ...
0
votes
2answers
166 views

Improving turn around time when building Java EE apps

One troubling aspect of building Java EE applications is the turn around time for the edit, compile, deploy process. I tried using Jetty but even that has some problems after making several edits you ...
0
votes
1answer
23 views

parallel make that is aware of memory

I use "make -j" (along with a makefile) to generate thumbnails and compute various statistics on a large collection of movie files. Depending on the movie, some of the statistics I compute require ...
0
votes
0answers
39 views

How to generate a indeterminate number of WAR files using Maven?

I would like to generate multiple WAR files, during the build cycle of my project. I already know how to add multiple dest-file, and other configuration with the maven-war-plugin. But I want to know ...
3
votes
4answers
2k views

nant vs. msbuild: stopping a service

I'm trying to decide which side I'm on in the MsBuild vs. Nant war. I'm starting with: stop a service, deploy some files, restart the service. Just from looking at these two links, that is much easier ...
0
votes
0answers
6 views

Is it possible to create a custom manifest for Dbscripts which is packaged into a product separately using java?

I have a set of DBscripts to be packaged into a product for release.I need to maintain the integrity of my scripts , so that no one changes it.Is there any possible way to create a Custom manifest to ...
0
votes
1answer
132 views

Which Xcode build settings for iPhone app so it can run on ipad as well?

I have written an app intended for the iphone. Obviously it is ok if it used on the ipad in the iphone mode, but it is an iphone app. My app got rejected by Apple, I received a mail with a screenshot ...
1
vote
0answers
147 views

How can I make the Microsoft C++ compiler treat unknown flags as errors rather than warnings?

For various reasons, I would like to be able to script the detection of whether the MS C++ compiler honors a particular flag. I'm using the compiler from the Windows 7.1 SDK: C:\> cl /version ...
4
votes
2answers
2k views

Build information in iOS Application (date/time app was built)

I'm looking for a way to dynamically add in information about the application during the build process of an iOS application. During testing, it would be great to know when the application I have ...
1
vote
1answer
47 views

will compiling with the same source, compiler and library version result in exactly the same binary

I would like to know if I get exactly the same binary result if I compile with: the same source code the same compiler, version, command the same library Or are there other constraints as well ...
16
votes
5answers
2k views

Visual Studio post build events stuck waiting for executable to finish before running app in debug mode

Part of the post build on my project is the execution of a program I wrote for testing the main application. Unfortunately, the post build process in visual studio locks up waiting for the executable ...
0
votes
1answer
227 views

XCode build phase with rsync not deleting files from bundle

I have two resource folders added as folder references to my XCode project. Following the advice on this question I created a new build phase that copies those folders using the rsync command, so that ...
0
votes
2answers
253 views

TFS BuildProcessTemplate - Switch<T> always seems to choose Default option

I'm attempting to get a build process template to switch build tools based on the project file extension (specifically, I'm trying to build some Sandcastle and SqlSpec documentation projects without ...
0
votes
4answers
271 views

Java EE: Need better deployment system

We are currently using JDeveloper to build our production EARs. One problem with this is that if the developer doesn't add new files to a VCS, then that developer is the only one capable of making ...
6
votes
5answers
2k views

How can I debug (preferably in an IDE) an MSBuild script?

We use MSBuild quite extensively as part of our continuous integration process, and whilst it is incredibly powerful and we can do practically all of our build, test and deployment within it ...
8
votes
1answer
2k views

Have CMake recursively scan folders?

How do I set up CMake to recursively scan a given directory and determine the list of source files? My project is a shared library. I have a folder structure similar to this: / src/ # ...

1 2 3 4 5 33