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

4
votes
0answers
164 views

Is there a way to programmatically generate an ovf file that can be used to kickstart an iso image on boot?

Similar to genisofs I want to be able to run a command on a box with minimal additional services and create an ovf and associated data files that reference an iso image and can be used to kickstart a ...
4
votes
0answers
265 views

Do I need a license to install VS 2010 premium or professional edition on a build server

We've got a few licenses for VS 2010 professional and Premium editions at work. Do we need to buy an extra license to install VS on a build machine ?? Note: this is just to run some codedUI tests ...
3
votes
0answers
247 views

How to build binaries and use it in several machines in Unix?

I have source code of a compiler which I am building like this: /path/to/srcdir/configure --prefix=/path/to/installdir make make install I want to distribute the resulting 'installdir' to other ...
3
votes
0answers
228 views

Tools for receiving build notifications in Skype group chat

My team uses skype group chat, and I would love to have a tool that could post notifications to our group chat. I would like to avoid relying on an RSS feed, but it may come down to that. But even ...
3
votes
0answers
317 views

scons: How can I create a link to another repository's target if the target is built in the other repository

When I add a "Repository" to a SConstruct file (link), if any target in my repository has been built in this other repository ( and the dependencies haven't changed), then SCons will not build the ...
2
votes
0answers
196 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(): ...
2
votes
0answers
243 views

Building SDL2 with NDK toolchain

I wonder if anyone did managed to build the fresh SDL2 with the toolchain of the Android NDK(r8d). SDL2 seems to be very close to the release (since yesterday it isn't "UNDER CONSTROCTION anymore: ...
2
votes
0answers
209 views

CMAKE_TOOLCHAIN_FILE was not used by the project

Cmake gives this warning when building one third-party script: CMake Warning: Manually-specified variables were not used by the project: CMAKE_TOOLCHAIN_FILE Is there any common advices what ...
2
votes
0answers
102 views

Flexible directory structure for a cross-platform library?

I am seeking advice on how to design a flexible and logical directory structure for a cross-platform library. The library is intended to be portable to several UNIX-like operating systems and a few ...
2
votes
0answers
150 views

Specifying solution build order in the MonoDevelop

I have a C# solution being developed with MonoDevelop, there are a number of projects. When the solution is being built, I need to make sure some project A is built after some other project B in the ...
2
votes
0answers
96 views

Customizing Auto-Build for multiple C++-Projects

Hy guys, for a project at the university we're faced with the following problem: For coverage analysis purposes we should instrument the code of several C++-Projects, which are automatically build ...
2
votes
0answers
264 views

Causes for slow build times of visual studio resource (.resx) files when using build solution in an asp.net website

I am working with an asp.net website and the App_LocalResources folders are very slow to compile. Could there be a problem with the resource files (.resx) files that would cause this? My language ...
2
votes
0answers
152 views

Is it possible to direct output from build scripts the Xcode build log?

Is there a way to direct output from Xcode build scripts to the build log window in Xcode? I've see it claimed that that 'echo' will do this, but my results do not appear in Xcode, but in system.log ...
2
votes
0answers
272 views

Intermittent build error - cannot find header file

I am having a strange issue with a GNU Radio application I am working on. I have modified some of the processing blocks included with GNU Radio, and for some strange reason I get intermittent build ...
2
votes
0answers
259 views

Specify path to rule file using environment variable or macro?

In some of my Visual C++ project files I would like to specify the path to a rule file using an environment variable or macro. I have tried editing the ToolFile element with a text editor: ...
2
votes
0answers
124 views

SGEN throwing an AccessViolation error

I have a build process using the sgen.exe tool to build Xmlserializer assemblies to optimize their use in a WinForms application. This application was originally written on the .NET 2.0 framework and ...
1
vote
0answers
63 views

How to get latest code from TFService using alternate credentials?

as part of our continues integration process we want to get latest code from TFService in order to execute automated tests locally. We already could download the latest builds, but we cannot execute ...
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
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 ...
1
vote
0answers
153 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 ...
1
vote
0answers
127 views

Visual studio 2012 Post Build EXE returns an error but not failing the build

I'm trying to run some exe file after my build is done that's verifies some stuff. for this, i'm using the Post Build Hook from the build definitions and set "Treat Exe failure as build error" to ...
1
vote
0answers
204 views

Issues with multiple build template (xaml files) in project

I'm having trouble with my TFS Build project. I'm following the example from here as far as setting up the project in VS. I have a project just for the custom activities and a separate project for ...
1
vote
0answers
171 views

XCode Copy Files build phase skips files sometimes

I followed this excellent tutorial to set up to build a framework I'm building for an iOS app. http://spin.atomicobject.com/2011/12/13/building-a-universal-framework-for-ios/ I have everything ...
1
vote
0answers
23 views

Build system supports multiple output per target

I work in the field of bioinformatics. My daily work processes several data files (DNA sequences, alignments, etc..) and produce many result files, so I want to use something like Unix make to ...
1
vote
0answers
379 views

Output window VS2010 won't show any messages after builing solution

I am using Visual Studio 2010 Ultimate and suddenly the output window won't show any messages after building solution. For example: 1>------ Build started: Project: libdnet-stripped, ...
1
vote
0answers
177 views

Setting specific checkout change (build.vcs.number) for custom build in TeamCity with Perforce

When doing a TeamCity personal build from Perforce, is there any way to set a specific change number to checkout? I suppose it means overriding the build.vcs.number.* variable, but I found no way to ...
1
vote
0answers
316 views

How to run a build process from Java program?

I'm writing an IDE for LaTeX. To build my a LaTeX file, I created another process within my GUI, so if the user hit the button, it will run: pdflatex myfile.tex This is the code in Java: public ...
1
vote
0answers
111 views

Switching a solution between assembly references and project references

We have a .NET 4.0 solution which contains a Fortran 95 for Windows project whose output is a managed DLL. The solution builds a Winforms app which uses this managed DLL. The Visual Studio plugin ...
1
vote
0answers
21 views

In VS2010, is there a way to automatically close Server Explorer connections to Database pre-Execute/Debug?

When I run my application, it drops and re-creates a database. Between runs, I typically use the VS2010 server explorer view to look at various database objects. If I forget to right-click the node ...
1
vote
0answers
1k views

jenkins: error during ant build - java.exe not recognized

I've just started setting up a build server, using Jenkins. Right now i have an extremely vanilla setup. Just trying to get it to run the default target of a specific build file. However whenever i ...
1
vote
0answers
369 views

Changing processParameters in a TFS Build Definition

Typically its done using something similar to Dim dicParamValues As IDictionary(Of String, Object) = WorkflowHelpers.DeserializeProcessParameters(pStrProcParam) ...
1
vote
0answers
1k views

How to setup xampp, phpunit, ant, zend framework

First post here, so take it easy please. I'm working through the first chapter of Zend Framework 1.8 Web Application Development by Keith Pope in an effort to learn PHP and the MVC framework. I ...
1
vote
0answers
563 views

Maven site command fails : looking for pmd plugin : I don't need it

This is my pom file reporting section: <reporting> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> ...
1
vote
0answers
1k views

Eclipse cygwin error - make: *** No rule to make target `all'. Stop

From today afternoon I am trying to setup C/C++(cygwin gcc/g++) compiler for Eclipse Helios in Windows 7 inorder to run OpenGL applications in Eclipse(I have already configured Visual Studio 2008 for ...
1
vote
0answers
352 views

TFS2010 Build failing — Read permission required

I recently moved a project from TFS2008 to 2010, and I'm having trouble getting the 2010 build scripts to work. I managed to make the script run using the the upgrade template, but I'm running into ...
1
vote
0answers
352 views

Scala SBT: AssertionError on build

I am using SBT (0.7.4) with Scala(2.7.7) to build my Scala project and sometimes I get following error when building the project. So far the only remedy seems to retry it or do a clean on the SBT ...
0
votes
0answers
6 views

how to add .so file in android source code build in ASOP

I just want to know how to install application in system folder during build source code with .so file . I have put .apk file in system folder but confuse where to place .so file . Then after we build ...
0
votes
0answers
8 views

Xcode Maven Plugin : adding extra headers

The Xcode Maven Plugin from http://sap-production.github.io/xcode-maven-plugin/site is a nice maven plugin for people who like maven and wan't to avoid some pain with xcode dependencies, framework ...
0
votes
0answers
12 views

Excluding conflicting resources of external project in Android project build

In Eclipse, I have an Android project which depends on roughly 250 regular Java projects. Each of these has -- among others -- a set of resource files called translation_XX.properties. The folder ...
0
votes
0answers
124 views

Yeoman / Grunt not compiling Compass

Has anyone come across an issue using compass with yeoman and grunt where the stylesheets are not being compiled in their build. I'm new at this and trying to really understand whats going on behind ...
0
votes
0answers
13 views

error while building neo4j source code

I'm trying to build Neo4J , I have downloaded the source from github: neo4j-master.zip containing the source, when i build this I hit upon following errors. tried to find out in google but ...
0
votes
0answers
33 views

DataNucleus + Maven: No classes specified?

I'm trying to generate a table using DataNucleus through SchemaTool from eclipse. However, I get the following error: SEVERE: No classes specified ! No classes specified ! An exception was thrown ...
0
votes
0answers
27 views

Tracking object/output files in separate Git

Sometimes when doing git checkout some_old_commit or git bisect I think it would be useful to get not just source files, but also all/some generated files (to test things without waiting for ...
0
votes
0answers
53 views

TFS 2012 Build - Web Projects

So I have a solution with two projects: ASP.Net MVC 4 Web Service (ProjectA) ASP.Net MVC 4 Web Site (ProjectB) Now I want these two to compile and output to a folder each on a network share: ...
0
votes
0answers
32 views

Visual Studio 2010 does not automatically build library when Start Debugging, but builds it on “Build Solution”

I have a solution that have several projects: Main project references library A. Library A does not reference any project in the solution. Library B references the main project for extensibility. ...
0
votes
0answers
12 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
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?
0
votes
0answers
85 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, ...
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 ...
0
votes
0answers
40 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 ...

1 2 3 4 5