Questions tagged [build-environment]
27 questions
240
votes
19 answers
How to install both Python 2.x and Python 3.x in Windows
I do most of my programming in Python 3.x on Windows 7, but now I need to use the Python Imaging Library (PIL), ImageMagick, and wxPython, all of which require Python 2.x.
Can I have both Python 2.x and Python 3.x installed in Windows 7? When I run…

dln385
- 11,630
- 12
- 48
- 58
40
votes
17 answers
Web developers - Is it better to do development on your local machine or on a remote host?
What are the pro/cons of doing web development on your local machine rather than on a centralized development server? For those that do dev on your local machine, how do you keep an updated db architecture for local development when multiple…

Cory House
- 14,235
- 13
- 70
- 87
20
votes
4 answers
Configuration Manager only shows Debug
I am working in Visual Studio 2008 on an ASP.NET application, which has been deployed to a test server. I would like to make a build without debug information to place in production, but the configuration manager only shows "Debug" in the…

Maitus
- 729
- 2
- 6
- 14
11
votes
1 answer
Build Environment setup - Using .net, java, hudson, and ruby - Could really use a critique
I'm trying to figure out the best way to stitch together a fast, repeatable, unbreakable build process for the following environment. I've got a plan for how to do it, but I'd really appreciate a critique. (I'd also appreciate some sample code,…

Jeff D
- 2,164
- 2
- 24
- 39
7
votes
8 answers
Cross platform build environment
As good developers we keep our code as standard compliant as possible to help in porting between platforms. But what tools are available that help us build the code in a uniform way across multiple platforms.
*nix family has make but Windows needs…

Martin York
- 257,169
- 86
- 333
- 562
5
votes
3 answers
SVN, TeamCity virtualisation / hardware requirement
I am trying to put a requirement together for a new environment to consist of TeamCity running of Sql Server, a couple of build agents (for now) and an SVN repository.
There are 6 developers and there will be 5 active solutions partaking in the CI…

redsquare
- 78,161
- 20
- 151
- 159
3
votes
2 answers
remote virtual machine versus local development
What are some pros and cons to setting up a development environment locally versus on a remote VM. Let's assume you have remote VMs available for every developer to own exclusively.
I've only setup dev environments locally and my current company…

djburdick
- 11,762
- 9
- 46
- 64
2
votes
1 answer
Publish to RSS from command line
From a Windows command line, I'd like to be able to publish to an RSS feed. I visualize something like this:
rsspub @builds "Build completed without errors."
Then, someone could go to my computer:
http://xp64-Matt:9090/builds/rss.xml
And there'd…

Matt Cruikshank
- 2,932
- 21
- 24
2
votes
1 answer
Why Gradle performs task "buildEnvironment" instead of "build" when I add the Artifactory Plugin in Jenkins and start the build?
It then executes the tasks buildEnvironment and artifactoryPublish (expecting build and artifactoryPublish). It only does that if I build over Jenkins Web UI. However if I build it via console it executes build. Please help!
console output:
>Started…

topschnitt
- 21
- 4
2
votes
1 answer
Xcode: How can I find $PRODUCT_NAME from within a shell script?
I'm writing a command-line tool that other developers will run. I'd like to extract the bundle id of the app from their Info.plist file. I can read the plist using something like PlistBuddy or Python's plistlib but I don't know how to reliably…

Tyler
- 28,498
- 11
- 90
- 106
1
vote
0 answers
Strange libgcov profiling error: Version mismatch
I'm building a C++ application with g++ and code coverage using a docker container (see below). Everthing is fine until here.
But when I execute the program in the same container
docker run -it ... image /bin/bash -c 'cd build && unbuffer -p…

galte
- 11
- 2
1
vote
1 answer
Jenkins JSON API - Locate Build, Build Environment, and Build Trigger API data
I am working with the Jenkins API JSON.
I understand the format to retrieve API data in JSON
/job//api/json
Within the job//configure UI we can configure/add Build triggers, build env, and build data.
I want to be…

Roger Perez
- 2,807
- 29
- 31
1
vote
1 answer
ant large project. How to enforce common output directory structure - include,import and inhertAll=false?
I have a toplevel ant project and many subprojects under…

Jayan
- 18,003
- 15
- 89
- 143
1
vote
2 answers
Using separate MSI build for config files for each environment
For one client, I have to deliver a build they use in QA and production. The checksum of the build file has to match - it cannot change at all between QA and production. The configuration for each environment is different, so I have a build that…

Tai Squared
- 12,273
- 24
- 72
- 82
1
vote
3 answers
Create separate apk for separate flavor in android to run on same device
I have already asked similar question But could not find what i seek . Hence asking again .
I want to run separate flavor apk on same device simultaneously.
I have used build.gradle(app) to create different flavors of apk. But installing different…

SimpleCoder
- 1,665
- 1
- 21
- 34