Questions tagged [build]

The process of converting source code files into standalone software artifact(s) that can be run on a computer

In the field of computer software, the term software build refers either to the process of converting source code files into standalone software artifact(s) that can be run on a computer, or the result of doing so.

Useful Links

23199 questions
9
votes
4 answers

Build errors of missing packages in Visual Studio Online (2015 version)

I'm getting the following message when I trigger a build on check-in to Visual Studio Online. Locally it compiles and deploys just fine. packages\Microsoft.Net.Compilers.1.0.0\tools\Microsoft.CSharp.Core.targets (67, 5) To be more precise, this is…
9
votes
2 answers

Select Git branch for TeamCity Build Configuration

I want to accomplish following via teamcity in my CI box. Master branch commit : Build and Release Beta branch commit: Build and Release to Crashlytics All other commits to any other branch: Build (side note since most of our development branches…
SpaceDust__
  • 4,844
  • 4
  • 43
  • 82
9
votes
3 answers

How can I upgrade the sqlite3 package in Python 2.6?

I was using Python 2.6.5 to build my application, which came with sqlite3 3.5.9. Apparently though, as I found out in another question of mine, foreign key support wasn't introduced in sqlite3 until version 3.6.19. However, Python 2.7 comes with…
Carson Myers
  • 37,678
  • 39
  • 126
  • 176
9
votes
3 answers

Can assembly version been automatically updated with each TFS 2010 Build?

I'm using Visual Studio 2010 and TFS 2010. Is there a way that dll version be automatically incremented with each TFS build? Thanks
Afshar Mohebi
  • 10,479
  • 17
  • 82
  • 126
9
votes
4 answers

Latex, TikZ and separate compilation of chapters and figures

I have fairly large Latex document with a lot of TikZ figures inside. I have a habit of frequent recompilation and it takes forever to compile it using pdflatex. Figures in TikZ take most of the time. My question is what is the best way to split…
Łukasz Lew
  • 48,526
  • 41
  • 139
  • 208
9
votes
5 answers

How create maven alias for set of goals?

I'm configuring a Maven project and want to be able to alias, like mvn server - to execute mvn clean package tomcat:run The Grunt task runner does it very well, but I haven't found a way to do the same in Maven. Is it possible?
diogo beato
  • 175
  • 1
  • 7
9
votes
2 answers

Gradle .lock files not removed when stopping build manually

When running gradle build from command line and manually terminating with Ctrl+Z, the .lock files, generated by gradle aren't removed. During the next build, I get a build failure with the following message: ..... > Timeout waiting to lock artifact…
superM
  • 8,605
  • 8
  • 42
  • 51
9
votes
2 answers

Force VS2010 to keep the build output path absolute

We want to have our build server send the output of each build to C:\Projects\{project name}\build\{build configuration}\. To accomplish this, I set the Build Output path property for my projects to that in Visual Studio 2010, and build locally to…
Tomas Aschan
  • 58,548
  • 56
  • 243
  • 402
9
votes
1 answer

prevent rebuilding whole docker container everytime? improving speed

Dockerizing a Rails application taking ages to rebuild the container. I tried to ADD as far at the end but not possible I think more. Any suggestions on how to improve the rebuild speed of my docker container? Or general suggestions on how to…
Rubytastic
  • 15,001
  • 18
  • 87
  • 175
9
votes
2 answers

Using IncrediBuild with DevEnv.exe vs MSBuild.exe

I use Xorax IncrediBuild to build Visual Studio 2013 (or later) solutions and projects, they're mostly .vcxproj with a bunch of .csproj ones. It took me a little bit of digging, but I've learned that: When IncrediBuild is used with the regular…
mloskot
  • 37,086
  • 11
  • 109
  • 136
9
votes
2 answers

JavaFX 8 - How to build EXE with Maven & INNO

I have not been able to successfully find a working solution on how to configure Maven to build an EXE from JavaFX with Maven. Projects set up with E(fx)clipse using the build.fxbuild work great, however I would prefer to have a maven project, with…
purring pigeon
  • 4,141
  • 5
  • 35
  • 68
9
votes
3 answers

What is the standard build tool in Erlang?

I am very new to Erlang programming language. Is there a standard build tool in Erlang? I have googled out these, not sure which one I should use. Erlang Make http://www.erlang.org/doc/man/make.html Rebar Erlang.mk
redfrontedr
  • 331
  • 2
  • 8
9
votes
1 answer

ANT doesn't get exit code return by a python script

I'm currently using ant for building my java project on a Windows XP machine. I have different tasks defined in the build.xml and one of this is the exec of a Python script for analyzing the application output. I would like to make ANT failing when…
Claus
  • 5,662
  • 10
  • 77
  • 118
9
votes
5 answers

What happens when I add a Maven dependency?

When I add a dependency to the pom.xml file and build with "mvn package", what steps does Maven take with that dependency code? Does it physically grab the java code from that dependency's package and put it into the JAR? And why do I need to add…
user1956609
  • 2,132
  • 5
  • 27
  • 43
9
votes
2 answers

Building x64 C++ project from command line says: This operation should only take place on the UI thread

Visual Studio 2013 has a problem when building, it displays an error message as follows: c:>devenv /build debug /project (project name) /projectconfig "debug|x64" (solution Name).sln 1>This operation should only take place on the UI thread.
Amit
  • 111
  • 1
  • 6
1 2 3
99
100